You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by pc...@apache.org on 2006/10/07 11:24:08 UTC

svn commit: r453876 - /incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/ProductDerivations.java

Author: pcl
Date: Sat Oct  7 02:24:07 2006
New Revision: 453876

URL: http://svn.apache.org/viewvc?view=rev&rev=453876
Log:
Oops. It turns out it's good to compile *before* committing.

Modified:
    incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/ProductDerivations.java

Modified: incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/ProductDerivations.java
URL: http://svn.apache.org/viewvc/incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/ProductDerivations.java?view=diff&rev=453876&r1=453875&r2=453876
==============================================================================
--- incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/ProductDerivations.java (original)
+++ incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/ProductDerivations.java Sat Oct  7 02:24:07 2006
@@ -37,7 +37,7 @@
     private static final String[] _prefixes;
     static {
         ClassLoader cl = ProductDerivation.class.getClassLoader();
-        String pds = Services.getImplementors(ProductDerivation.class, cl);
+        String[] pds = Services.getImplementors(ProductDerivation.class, cl);
         List derivations = new ArrayList(pds.length);
         for (int i = 0; i < pds.length; i++) {
             try {