wonook commented on a change in pull request #215: [NEMO-373] Optimize with DAG
Patterns
URL: https://github.com/apache/incubator-nemo/pull/215#discussion_r279174391
##########
File path:
common/src/main/java/org/apache/nemo/common/test/EmptyComponents.java
##########
@@ -217,15 +217,6 @@ private EmptySourceVertex(final EmptySourceVertex that) {
this.name = that.name;
}
- @Override
- public String toString() {
- final StringBuilder sb = new StringBuilder();
- sb.append(super.toString());
- sb.append(", name: ");
- sb.append(name);
- return sb.toString();
- }
Review comment:
This was to replace the toString method to follow a specific convention for
all IRVertex classes.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services