You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by ho...@apache.org on 2007/10/26 06:46:53 UTC

svn commit: r588520 - /lucene/solr/trunk/src/java/org/apache/solr/core/Config.java

Author: hossman
Date: Thu Oct 25 21:46:51 2007
New Revision: 588520

URL: http://svn.apache.org/viewvc?rev=588520&view=rev
Log:
fix old pre-multicore comments that refer to singletons that are no longer singletons

Modified:
    lucene/solr/trunk/src/java/org/apache/solr/core/Config.java

Modified: lucene/solr/trunk/src/java/org/apache/solr/core/Config.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/core/Config.java?rev=588520&r1=588519&r2=588520&view=diff
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/core/Config.java (original)
+++ lucene/solr/trunk/src/java/org/apache/solr/core/Config.java Thu Oct 25 21:46:51 2007
@@ -376,12 +376,15 @@
     return normalizeDir( home );
   }
 
-  /** Singleton classloader loading resources specified in any configs */
+  /** 
+   * Classloader loading resources specified in any configs 
+   * @see #getClassLoader()
+   */
   private ClassLoader classLoader = null;
 
   /**
-   * Returns the singleton classloader to be use when loading resources
-   * specified in any configs.
+   * Returns the classloader to be use when loading resources
+   * specified in this config
    *
    * <p>
    * This loader will delegate to the context classloader when possible,