File tree 1 file changed +11
-3
lines changed
langtools/src/share/classes/com/sun/tools/doclets/formats/html
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 25
25
26
26
package com .sun .tools .doclets .formats .html ;
27
27
28
- import java .io .*;
29
- import java .util .*;
28
+ import java .io .IOException ;
29
+ import java .util .ArrayList ;
30
+ import java .util .Collections ;
31
+ import java .util .HashMap ;
32
+ import java .util .Iterator ;
33
+ import java .util .List ;
34
+ import java .util .Map ;
35
+ import java .util .Set ;
36
+ import java .util .SortedSet ;
37
+ import java .util .TreeSet ;
30
38
31
39
import com .sun .javadoc .*;
32
40
import com .sun .tools .doclets .formats .html .markup .*;
@@ -95,7 +103,7 @@ public ClassUseWriter(ConfigurationImpl configuration,
95
103
super (configuration , filename );
96
104
this .classdoc = classdoc ;
97
105
if (mapper .classToPackageAnnotations .containsKey (classdoc .qualifiedName ()))
98
- pkgToPackageAnnotations = new HashSet <PackageDoc >(mapper .classToPackageAnnotations .get (classdoc .qualifiedName ()));
106
+ pkgToPackageAnnotations = new TreeSet <PackageDoc >(mapper .classToPackageAnnotations .get (classdoc .qualifiedName ()));
99
107
configuration .currentcd = classdoc ;
100
108
this .pkgSet = new TreeSet <PackageDoc >();
101
109
this .pkgToClassTypeParameter = pkgDivide (mapper .classToClassTypeParam );
You can’t perform that action at this time.
0 commit comments