aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr171953_2/test/ListFactory.java
blob: 473ccac209e4d98f264e9d865e7e71ee461ae727 (plain)
1
2
3
4
5
6
7
8
9
package test;

import java.util.List;

public interface ListFactory {

	<T> List<T> createList();
	<T> List<T> createList(int initialCapacity);
}