Abstract toString into AbstractNode, deprecate the implementation

Log that the default implementation will be removed
This commit is contained in:
Clément Fournier
2018-01-25 03:02:44 +01:00
parent cd105125d8
commit 6a3b332aee
14 changed files with 36 additions and 29 deletions

View File

@ -11,6 +11,7 @@ public class DummyNode extends AbstractNode {
super(id);
}
@Deprecated
@Override
public String toString() {
return "dummyNode";