blob: c76a0977a71bf6c08c9cd2673d78b66910b110bb [file] [log] [blame]
// Another false positive I found in Zookeeper.
import java.util.*;
class StringSort {
public static void sort() {
List<String> myList = new ArrayList<String>();
Collections.sort(myList);
}
}