static L emptyList() { ret new ArrayList; //ret Collections.emptyList(); } static L emptyList(int capacity) { ret new ArrayList(capacity); }