Comment #1: /home/edmund/evaluate_projects/ant/src/main/org/apache/tools/ant/util/SplitClassLoader.java: 52-54 [COMMENT #1] If still not found, then call findClass in order to find the class. // forceLoadClass is not convenient here since it would not // properly deal with inner classes of these classes. protected synchronized Class loadClass(String classname, boolean resolve) throws ClassNotFoundException { Class theClass = findLoadedClass(classname); if (theClass != null) { return theClass; } if (isSplit(classname)) { ****** COMMENT #1 ****** theClass = findClass(classname); if (resolve) { resolveClass(theClass); } return theClass; } else { return super.loadClass(classname, resolve); } } # Rating on this comment # 1: accurate, adequate, concise and useful at describing the source code. (committable) # 2: not accurate, adequate, concise, or useful, at describing the source code but can be fixed with minor modifications. # (committable but require fixes) # 3: not accurate, adequate, concise, or useful at describing the source code. (not committable) # (Fill in after the keyword: 1, 2 or 3) CLASSIFICATION: ————————————