Skip to content

Commit

Permalink
Fix typoed condition introduced during PMD updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
uckelman committed May 4, 2024
1 parent e1ae5b8 commit c3d5f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vassal-app/src/main/java/VASSAL/counters/Hideable.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public Rectangle boundingBox() {

@Override
public void draw(Graphics g, int x, int y, Component obs, double zoom) {
if (!invisibleToMe()) {
if (invisibleToMe()) {
return;
}

Expand Down

0 comments on commit c3d5f4a

Please sign in to comment.