You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2009/01/07 07:14:34 UTC

svn commit: r732237 - /activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/FactoryFinder.java

Author: ningjiang
Date: Tue Jan  6 22:14:34 2009
New Revision: 732237

URL: http://svn.apache.org/viewvc?rev=732237&view=rev
Log:
Fixed a simple cs error

Modified:
    activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/FactoryFinder.java

Modified: activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/FactoryFinder.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/FactoryFinder.java?rev=732237&r1=732236&r2=732237&view=diff
==============================================================================
--- activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/FactoryFinder.java (original)
+++ activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/FactoryFinder.java Tue Jan  6 22:14:34 2009
@@ -31,8 +31,8 @@
  * Finder to find factories from the resource classpath, usually <b>META-INF/services/org/apache/camel/</b>.
  */
 public class FactoryFinder {
-    private final String path;
     protected final ConcurrentHashMap<String, Class> classMap = new ConcurrentHashMap<String, Class>();
+    private final String path;    
 
     public FactoryFinder() {
         this("META-INF/services/org/apache/camel/");