You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2013/12/06 17:41:08 UTC

svn commit: r1548587 - /lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ClusterState.java

Author: markrmiller
Date: Fri Dec  6 16:41:08 2013
New Revision: 1548587

URL: http://svn.apache.org/r1548587
Log:
Clean up.

Modified:
    lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ClusterState.java

Modified: lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ClusterState.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ClusterState.java?rev=1548587&r1=1548586&r2=1548587&view=diff
==============================================================================
--- lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ClusterState.java (original)
+++ lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ClusterState.java Fri Dec  6 16:41:08 2013
@@ -60,11 +60,11 @@ public class ClusterState implements JSO
   }
 
   /**
-   * @deprecated
+   * @deprecated prefer another constructor
    */
   public ClusterState(Integer zkClusterStateVersion, Set<String> liveNodes,
                       Map<String, DocCollection> collectionStates) {
-    this(zkClusterStateVersion, liveNodes, collectionStates,null);
+    this(zkClusterStateVersion, liveNodes, collectionStates, null);
 
   }
   
@@ -362,8 +362,8 @@ public class ClusterState implements JSO
     return true;
   }
 
-  /**Internal API used only by ZkStateReader
-   * @param liveNodes
+  /**
+   * Internal API used only by ZkStateReader
    */
   void setLiveNodes(Set<String> liveNodes){
     this.liveNodes = liveNodes;