Skip to content

Commit

Permalink
See r18885: Fix default hasTagDifferent implementation.
Browse files Browse the repository at this point in the history
git-svn-id: https://josm.openstreetmap.de/svn/trunk@18887 0c6e7542-c601-0410-84e7-c038aed88b3b
  • Loading branch information
taylor.smock committed Oct 30, 2023
1 parent 97b827e commit de9b000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/openstreetmap/josm/data/osm/Tagged.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ default boolean hasTagDifferent(String key, String... values) {
return false;
}
}
return true;
return actual != null;
}

/**
Expand Down

0 comments on commit de9b000

Please sign in to comment.