v4: Expose generic List<Integer>

[git-p4: depot-paths = "//depot/code/antlr4/main/": change = 9333]
This commit is contained in:
sharwell 2011-11-17 16:01:13 -08:00
parent ed32646f52
commit 66c53e18dc
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ public interface IntSet {
/** remove this element from this set */
void remove(int el);
List toList();
List<Integer> toList();
String toString();
}