You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2015/02/11 18:14:04 UTC

svn commit: r1659008 - /lucene/dev/trunk/solr/core/src/java/org/apache/solr/core/RequestHandlers.java

Author: noble
Date: Wed Feb 11 17:14:03 2015
New Revision: 1659008

URL: http://svn.apache.org/r1659008
Log:
javadocs error fixed

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

Modified: lucene/dev/trunk/solr/core/src/java/org/apache/solr/core/RequestHandlers.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/java/org/apache/solr/core/RequestHandlers.java?rev=1659008&r1=1659007&r2=1659008&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/java/org/apache/solr/core/RequestHandlers.java (original)
+++ lucene/dev/trunk/solr/core/src/java/org/apache/solr/core/RequestHandlers.java Wed Feb 11 17:14:03 2015
@@ -245,15 +245,15 @@ public final class RequestHandlers {
    * Rather then instantiate and initialize the handler on startup, this wrapper waits
    * until it is actually called.  This should only be used for handlers that are
    * unlikely to be used in the normal lifecycle.
-   * <p>
+   *
    * You can enable lazy loading in solrconfig.xml using:
-   * <p>
+   *
    * <pre>
    *  &lt;requestHandler name="..." class="..." startup="lazy"&gt;
    *    ...
    *  &lt;/requestHandler&gt;
    * </pre>
-   * <p>
+   *
    * This is a private class - if there is a real need for it to be public, it could
    * move
    *