add toString() to CollectionRef

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1669153 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shai Erera 2015-03-25 16:44:07 +00:00
parent 9b255d6cc4
commit d1c5ff0153
1 changed files with 5 additions and 0 deletions

View File

@ -391,6 +391,11 @@ public class ClusterState implements JSONWriter.Writable {
} }
public boolean isLazilyLoaded() { return false; } public boolean isLazilyLoaded() { return false; }
@Override
public String toString() {
return coll.toString();
}
} }