blob: 0e4c7a811db3b42734f557546332839fe640cf22 [file] [log] [blame]
import java.util.List;
import java.util.Collections;
public class Foo {
private List<String> myList;
private void sort() {
Collections.sort(myList, new Comparator<caret>);
}
}