Skip to content

Commit

Permalink
Use the molecule name in NodeTracker, not its toString
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK committed Sep 13, 2017
1 parent 82d3bec commit 15281bd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -78,7 +78,7 @@ public void stepDone(final Environment<T> env, final Reaction<T> exec, final Tim
sb.append(CONTENT);
sb.append('\n');
sb.append(n.getContents().entrySet().stream()
.map(e -> e.getKey() + " > " + e.getValue() + '\n')
.map(e -> e.getKey().getName() + " > " + e.getValue() + '\n')
.sorted()
.collect(Collectors.joining())
);
Expand Down

0 comments on commit 15281bd

Please sign in to comment.