langtools/src/share/classes/com/sun/tools/sjavac/CompileChunk.java
changeset 22163 3651128c74eb
parent 15368 2577ddb7e710
child 22449 1fd6d4bec7dd
equal deleted inserted replaced
22162:3b3e23e67329 22163:3651128c74eb
    39  * or deletion without notice.</b></p>
    39  * or deletion without notice.</b></p>
    40  */
    40  */
    41 public class CompileChunk implements Comparable<CompileChunk> {
    41 public class CompileChunk implements Comparable<CompileChunk> {
    42     public int numPackages;
    42     public int numPackages;
    43     public int numDependents;
    43     public int numDependents;
    44     public Set<URI> srcs = new HashSet<URI>();
    44     public Set<URI> srcs = new HashSet<>();
    45     public StringBuilder pkgNames = new StringBuilder();
    45     public StringBuilder pkgNames = new StringBuilder();
    46     public String pkgFromTos = "";
    46     public String pkgFromTos = "";
    47 
    47 
    48     public int compareTo(CompileChunk c) {
    48     public int compareTo(CompileChunk c) {
    49         if (numDependents == c.numDependents) return 0;
    49         if (numDependents == c.numDependents) return 0;