arranged for per-host classloaders
[org.ibex.jinetd.git] / src / org / ibex / jinetd / TreeClassLoader.java
index 20d2d84..d7b4f5e 100644 (file)
@@ -19,7 +19,6 @@ public class TreeClassLoader extends URLClassLoader {
 
     public TreeClassLoader(File root, ClassLoader parent) {
         super(new URL[] { }, parent);
-       System.out.println("TreeClassLoader("+root.getAbsolutePath()+")");
         this.root = root;
         this.lib = new File(root.getAbsolutePath() + File.separatorChar + "lib");
     }