diff -r dbe9e82f9d25 -r 905e151a185a src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java Thu Jan 08 16:34:58 2009 -0800 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java Tue Jan 13 13:27:14 2009 +0000 @@ -355,7 +355,7 @@ classDoc.qualifiedName().equals("org.omg.CORBA.Object")) { return; // Don't generate the list, too huge } - List subclasses = classtree.subs(classDoc, false); + List subclasses = classtree.subs(classDoc, false); if (subclasses.size() > 0) { dl(); dt(); @@ -371,7 +371,7 @@ */ public void writeSubInterfacesInfo() { if (classDoc.isInterface()) { - List subInterfaces = classtree.allSubs(classDoc, false); + List subInterfaces = classtree.allSubs(classDoc, false); if (subInterfaces.size() > 0) { dl(); dt(); @@ -393,7 +393,7 @@ classDoc.qualifiedName().equals("java.io.Serializable")) { return; // Don't generate the list, too big } - List implcl = classtree.implementingclasses(classDoc); + List implcl = classtree.implementingclasses(classDoc); if (implcl.size() > 0) { dl(); dt(); @@ -409,7 +409,7 @@ public void writeImplementedInterfacesInfo() { //NOTE: we really should be using ClassDoc.interfaceTypes() here, but // it doesn't walk up the tree like we want it to. - List interfaceArray = Util.getAllInterfaces(classDoc, configuration); + List interfaceArray = Util.getAllInterfaces(classDoc, configuration); if (classDoc.isClass() && interfaceArray.size() > 0) { dl(); dt(); @@ -425,7 +425,7 @@ public void writeSuperInterfacesInfo() { //NOTE: we really should be using ClassDoc.interfaceTypes() here, but // it doesn't walk up the tree like we want it to. - List interfaceArray = Util.getAllInterfaces(classDoc, configuration); + List interfaceArray = Util.getAllInterfaces(classDoc, configuration); if (classDoc.isInterface() && interfaceArray.size() > 0) { dl(); dt(); @@ -438,7 +438,7 @@ /** * Generate links to the given classes. */ - private void writeClassLinks(int context, List list) { + private void writeClassLinks(int context, List list) { Object[] typeList = list.toArray(); //Sort the list to be printed. print(' ');