Skip to content

Commit

Permalink
fix: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Flashky committed Dec 26, 2024
1 parent 2453ef7 commit 2cb0653
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class CrossedWiresVisual {
private final Map<String,GateVisual> gatesPerOutput = new HashMap<>();
private final Map<String,Integer> wires = new HashMap<>();
private final List<GateVisual> gates = new ArrayList<>();
private List<String> endWires;

public CrossedWiresVisual(List<String> inputs) {
initializeWires(inputs);
Expand Down Expand Up @@ -104,8 +103,6 @@ private void initializeWires(List<String> inputs) {
}
}
}

endWires = wires.keySet().stream().filter(w -> w.startsWith("z")).sorted().toList().reversed();
}


Expand Down

0 comments on commit 2cb0653

Please sign in to comment.