You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/03/28 22:25:11 UTC

svn commit: r642395 - /ofbiz/trunk/framework/base/src/start/org/ofbiz/base/start/Classpath.java

Author: jleroux
Date: Fri Mar 28 14:25:09 2008
New Revision: 642395

URL: http://svn.apache.org/viewvc?rev=642395&view=rev
Log:
This fix an obvious bug I found when trying to run OFBiz under Geronimo. It's came in during incubation period
Look at http://svn.ofbiz.org/viewcvs/trunk/framework/base/src/start/org/ofbiz/base/start/Classpath.java?rev=7900&view=markup (pre-Apache) the bug is not there,
now look at http://fisheye6.cenqua.com/browse/~raw,r=490457/ofbiz/trunk/framework/base/src/start/org/ofbiz/base/start/Classpath.java the bug is there,

Modified:
    ofbiz/trunk/framework/base/src/start/org/ofbiz/base/start/Classpath.java

Modified: ofbiz/trunk/framework/base/src/start/org/ofbiz/base/start/Classpath.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/start/org/ofbiz/base/start/Classpath.java?rev=642395&r1=642394&r2=642395&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/start/org/ofbiz/base/start/Classpath.java (original)
+++ ofbiz/trunk/framework/base/src/start/org/ofbiz/base/start/Classpath.java Fri Mar 28 14:25:09 2008
@@ -94,7 +94,6 @@
         int cnt = _elements.size();
         if (cnt >= 1) {
             cp.append(_elements.get(0).getPath());
-            appendPath(cp, _elements.get(0).getPath());
         }
         for (int i = 1; i < cnt; i++) {
             cp.append(File.pathSeparatorChar);