Changeset 18072 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2021-07-19T13:25:26+02:00 (3 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolverModel.java
r18007 r18072 307 307 */ 308 308 public final void actOnDecisions(BiConsumer<String, MultiValueResolutionDecision> action) { 309 decisions.forEach(action ::accept);309 decisions.forEach(action); 310 310 } 311 311 } -
trunk/src/org/openstreetmap/josm/tools/Utils.java
r18070 r18072 670 670 * How to Prevent Your Java Collections From Wasting Memory</a> 671 671 */ 672 @SuppressWarnings("unchecked") 672 673 public static <K, V> Map<K, V> toUnmodifiableMap(Map<K, V> map) { 673 674 if (map == null || map.isEmpty()) {
Note:
See TracChangeset
for help on using the changeset viewer.