Return-Path: Delivered-To: apmail-geronimo-xbean-scm-archive@minotaur.apache.org Received: (qmail 11842 invoked from network); 11 Feb 2011 19:57:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Feb 2011 19:57:06 -0000 Received: (qmail 19853 invoked by uid 500); 11 Feb 2011 19:57:06 -0000 Delivered-To: apmail-geronimo-xbean-scm-archive@geronimo.apache.org Received: (qmail 19841 invoked by uid 500); 11 Feb 2011 19:57:06 -0000 Mailing-List: contact xbean-scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: xbean-scm@geronimo.apache.org Delivered-To: mailing list xbean-scm@geronimo.apache.org Received: (qmail 19834 invoked by uid 99); 11 Feb 2011 19:57:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Feb 2011 19:57:05 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Feb 2011 19:57:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 431E423889E9; Fri, 11 Feb 2011 19:56:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1069933 - in /geronimo/xbean/trunk/xbean-bundleutils: pom.xml src/main/java/org/apache/xbean/osgi/bundle/util/equinox/EquinoxBundleClassLoader.java Date: Fri, 11 Feb 2011 19:56:45 -0000 To: xbean-scm@geronimo.apache.org From: gawor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110211195645.431E423889E9@eris.apache.org> Author: gawor Date: Fri Feb 11 19:56:44 2011 New Revision: 1069933 URL: http://svn.apache.org/viewvc?rev=1069933&view=rev Log: override findResources() instead of getResources() as JVMs call different methods to search for resources Modified: geronimo/xbean/trunk/xbean-bundleutils/pom.xml geronimo/xbean/trunk/xbean-bundleutils/src/main/java/org/apache/xbean/osgi/bundle/util/equinox/EquinoxBundleClassLoader.java Modified: geronimo/xbean/trunk/xbean-bundleutils/pom.xml URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-bundleutils/pom.xml?rev=1069933&r1=1069932&r2=1069933&view=diff ============================================================================== --- geronimo/xbean/trunk/xbean-bundleutils/pom.xml (original) +++ geronimo/xbean/trunk/xbean-bundleutils/pom.xml Fri Feb 11 19:56:44 2011 @@ -25,7 +25,7 @@ xbean-bundleutils bundle - Apache XBean OSGI Bundle Utilitiess + Apache XBean OSGI Bundle Utilities Modified: geronimo/xbean/trunk/xbean-bundleutils/src/main/java/org/apache/xbean/osgi/bundle/util/equinox/EquinoxBundleClassLoader.java URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-bundleutils/src/main/java/org/apache/xbean/osgi/bundle/util/equinox/EquinoxBundleClassLoader.java?rev=1069933&r1=1069932&r2=1069933&view=diff ============================================================================== --- geronimo/xbean/trunk/xbean-bundleutils/src/main/java/org/apache/xbean/osgi/bundle/util/equinox/EquinoxBundleClassLoader.java (original) +++ geronimo/xbean/trunk/xbean-bundleutils/src/main/java/org/apache/xbean/osgi/bundle/util/equinox/EquinoxBundleClassLoader.java Fri Feb 11 19:56:44 2011 @@ -75,7 +75,7 @@ public class EquinoxBundleClassLoader ex } @Override - public Enumeration getResources(String name) throws IOException { + public Enumeration findResources(String name) throws IOException { return resourceHelper.getResources(name); }