HBASE-6063 Replication related failures on trunk after HBASE-5453 (Gregory Channan)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1342095 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
larsh 2012-05-23 23:51:21 +00:00
parent 49349a35b0
commit 495ecfbc16
1 changed files with 8 additions and 0 deletions

View File

@ -92,4 +92,12 @@ public class ClusterId {
static ClusterId convert(final ClusterIdProtos.ClusterId cid) {
return new ClusterId(cid.getClusterId());
}
/**
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return this.id;
}
}