Skip to content

Commit

Permalink
fix mappers
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarv committed Apr 9, 2018
1 parent ee8a834 commit 826900b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public void close() throws IOException {
for (Node n : entry.getValue()) {
next.edge(entry.getKey(), n);
}
next.end();
}
// FIXME we can't close the next one because it the same for all copies
//next.close();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void node(Node method) throws IOException {
next.node(new TextNode(x.getClassName() + "::" + x.getShortMethodName()));
next.edge(method, new TextNode(Integer.toString(x.getLineNumber())));
}
next.node(method);
//next.node(method);
}

@Override
Expand Down

0 comments on commit 826900b

Please sign in to comment.