Clean up.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1548587 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2013-12-06 16:41:08 +00:00
parent 0754f884a1
commit a758823bbe
1 changed files with 4 additions and 4 deletions

View File

@ -60,11 +60,11 @@ public class ClusterState implements JSONWriter.Writable {
}
/**
* @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 JSONWriter.Writable {
return true;
}
/**Internal API used only by ZkStateReader
* @param liveNodes
/**
* Internal API used only by ZkStateReader
*/
void setLiveNodes(Set<String> liveNodes){
this.liveNodes = liveNodes;