You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by rw...@apache.org on 2012/04/08 15:53:05 UTC

svn commit: r1311005 - /incubator/stanbol/trunk/commons/solr/core/src/main/java/org/apache/stanbol/commons/solr/utils/ConfigUtils.java

Author: rwesten
Date: Sun Apr  8 13:53:05 2012
New Revision: 1311005

URL: http://svn.apache.org/viewvc?rev=1311005&view=rev
Log:
[minor] corrected a type in a log message

Modified:
    incubator/stanbol/trunk/commons/solr/core/src/main/java/org/apache/stanbol/commons/solr/utils/ConfigUtils.java

Modified: incubator/stanbol/trunk/commons/solr/core/src/main/java/org/apache/stanbol/commons/solr/utils/ConfigUtils.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/commons/solr/core/src/main/java/org/apache/stanbol/commons/solr/utils/ConfigUtils.java?rev=1311005&r1=1311004&r2=1311005&view=diff
==============================================================================
--- incubator/stanbol/trunk/commons/solr/core/src/main/java/org/apache/stanbol/commons/solr/utils/ConfigUtils.java (original)
+++ incubator/stanbol/trunk/commons/solr/core/src/main/java/org/apache/stanbol/commons/solr/utils/ConfigUtils.java Sun Apr  8 13:53:05 2012
@@ -279,7 +279,7 @@ public final class ConfigUtils {
             int exclamationIndex = urlString.indexOf('!');
             if (slashIndex >= 0 && exclamationIndex > 0) {
                 classPath = urlString.substring(slashIndex, exclamationIndex + 1);
-                log.info("manually parsed plassPath: {} from {}", classPath, classLocation);
+                log.info("manually parsed classPath: {} from {}", classPath, classLocation);
             } else {
                 // looks like there is an other reason than an URL as described above
                 // so better to throw an exception than to guess ...
@@ -292,7 +292,6 @@ public final class ConfigUtils {
             return new File(classPath.substring(0, classPath.length() - classFileName.length()));
         }
     }
-
     /**
      * Copies a resource (URL of an resource within a Bundle) to a file
      *