Skip to content

Commit

Permalink
Don't group capacitors that differ by capacitor presence
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbraginskiy committed Feb 15, 2025
1 parent ac2891f commit 1a38544
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,8 @@ public boolean equals(Object o) {
name.equals(that.name) &&
location.equals(that.location) &&
hasInsulator == that.hasInsulator &&
hasPulseModule == that.hasPulseModule;
hasPulseModule == that.hasPulseModule &&
hasCapacitor == that.hasCapacitor;
}

@Override
Expand Down

0 comments on commit 1a38544

Please sign in to comment.