Add a JAR to the list of JARs we search for a class's bytecodes.
// The URL is OS specific. On Solaris, file:/xyz and file:///xyz work.
// On NT, file://c:/xyz and file:/c:/xyz work.
// So we let the java.io.File create a URL for us.
File file = new File(FileUtil.getAbsolutePath(jarName));
/** IASRI 4660742
if(debug)
System.err.println("JarClassLoader.addJar: url=" + file.toURL());
**/
//START OF IASRI 4660742
if(debug && _logger.isLoggable(Level.FINE)) {
_logger.log(Level.FINE,"JarClassLoader.addJar: url=" + file.toURL());
}
//END OF IASRI 4660742
appendURL(file);