Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarv committed Nov 9, 2017
1 parent 9c81a95 commit 09f8667
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public class RemoveDuplicatesWriter implements GraphWriter {
private final HashMap<StackItem, HashMap<StackItem, HashSet<String>>> labels = new HashMap<>();
private final boolean checkLabel;

public RemoveDuplicatesWriter(GraphWriter parentWriter) {
this(parentWriter, true);
}

public RemoveDuplicatesWriter(GraphWriter parentWriter, boolean checkLabel) {
this.parentWriter = parentWriter;
this.checkLabel = checkLabel;
Expand Down

0 comments on commit 09f8667

Please sign in to comment.