Author: adrianc
Date: Thu Apr 30 10:17:03 2015
New Revision: 1676947
URL:
http://svn.apache.org/r1676947Log:
JavaDoc fix and remove debug code. No functional change.
Modified:
ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java
Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java?rev=1676947&r1=1676946&r2=1676947&view=diff==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java Thu Apr 30 10:17:03 2015
@@ -240,19 +240,13 @@ public final class Start {
}
/**
- * Creates a new <code>NativeLibClassLoader</code> instance, and optionally loads it
- * with base component class paths.
+ * Creates a new <code>NativeLibClassLoader</code> instance.
*
- * @param addBaseClassPaths When set to <code>true</code>, the class loader will be
- * initialized with the class paths needed to get StartupLoaders to work
* @return A new <code>NativeLibClassLoader</code> instance
* @throws IOException
*/
private NativeLibClassLoader createClassLoader() throws IOException {
ClassLoader parent = Thread.currentThread().getContextClassLoader();
- if (parent != null) {
- System.out.println("ClassLoader: " + parent.getClass().getName());
- }
if (parent instanceof NativeLibClassLoader) {
parent = parent.getParent();
}