blob: 4be724c5d907e193cdeac34b86d17273c5a19f02 [file] [log] [blame]
import java.util.*;
public class Test {
List<String> getArray(){
return null;
}
void foo() {
List<String> array = getArray();
Collections.sort(array, new Comparator<String>() {
public int compare(String s1, String s2) {
return 0;
}
});
}
}