maedhroz commented on a change in pull request #1301:
URL: https://github.com/apache/cassandra/pull/1301#discussion_r796259332
##########
File path: src/java/org/apache/cassandra/db/streaming/ComponentManifest.java
##########
@@ -106,6 +106,14 @@ public int hashCode()
return components.hashCode();
}
+ @Override
+ public String toString()
+ {
+ return "ComponentManifest{" +
+ "components=" + components +
+ '}';
Review comment:
style: could also be `return
String.format("ComponentManifest{components=%s}", components);` if you like to
see the whole message format without substitutions.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]