Return-Path: Delivered-To: apmail-ofbiz-commits-archive@www.apache.org Received: (qmail 82437 invoked from network); 29 Mar 2008 20:02:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Mar 2008 20:02:14 -0000 Received: (qmail 46045 invoked by uid 500); 29 Mar 2008 20:02:12 -0000 Delivered-To: apmail-ofbiz-commits-archive@ofbiz.apache.org Received: (qmail 46006 invoked by uid 500); 29 Mar 2008 20:02:12 -0000 Mailing-List: contact commits-help@ofbiz.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ofbiz.apache.org Delivered-To: mailing list commits@ofbiz.apache.org Received: (qmail 45997 invoked by uid 99); 29 Mar 2008 20:02:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Mar 2008 13:02:12 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Mar 2008 20:01:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 29E851A9832; Sat, 29 Mar 2008 13:01:52 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r642597 - /ofbiz/branches/release4.0/framework/base/src/start/org/ofbiz/base/start/Classpath.java Date: Sat, 29 Mar 2008 20:01:51 -0000 To: commits@ofbiz.apache.org From: jleroux@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080329200152.29E851A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jleroux Date: Sat Mar 29 13:01:41 2008 New Revision: 642597 URL: http://svn.apache.org/viewvc?rev=642597&view=rev Log: back ported 642395 by hand (bug in Classpath class) Modified: ofbiz/branches/release4.0/framework/base/src/start/org/ofbiz/base/start/Classpath.java Modified: ofbiz/branches/release4.0/framework/base/src/start/org/ofbiz/base/start/Classpath.java URL: http://svn.apache.org/viewvc/ofbiz/branches/release4.0/framework/base/src/start/org/ofbiz/base/start/Classpath.java?rev=642597&r1=642596&r2=642597&view=diff ============================================================================== --- ofbiz/branches/release4.0/framework/base/src/start/org/ofbiz/base/start/Classpath.java (original) +++ ofbiz/branches/release4.0/framework/base/src/start/org/ofbiz/base/start/Classpath.java Sat Mar 29 13:01:41 2008 @@ -103,7 +103,6 @@ int cnt = _elements.size(); if (cnt >= 1) { cp.append(((File) (_elements.get(0))).getPath()); - appendPath(cp, ((File) (_elements.get(0))).getPath()); } for (int i = 1; i < cnt; i++) { cp.append(File.pathSeparatorChar);