Skip to content

Commit

Permalink
Fix #23256: AbstractPrimitive::putAll not updating values (patch by m…
Browse files Browse the repository at this point in the history
…arcello)

git-svn-id: https://josm.openstreetmap.de/svn/trunk@18891 0c6e7542-c601-0410-84e7-c038aed88b3b
  • Loading branch information
taylor.smock committed Oct 31, 2023
1 parent 0d78f37 commit 3342dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/openstreetmap/josm/data/osm/AbstractPrimitive.java
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,8 @@ public void putAll(Map<String, String> tags) {
newKeys[index++] = tag.getKey();
newKeys[index++] = tag.getValue();
}
keys = newKeys;
}
keys = newKeys;
keysChangedImpl(originalKeys);
}

Expand Down

0 comments on commit 3342dd3

Please sign in to comment.