- Timestamp:
- 2024-08-12T18:00:21+02:00 (3 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/TagInfoExtract.java
r19113 r19181 20 20 import java.util.Collections; 21 21 import java.util.EnumSet; 22 import java.util.HashSet;23 22 import java.util.LinkedHashMap; 24 23 import java.util.List; … … 616 615 617 616 static Set<TagInfoTag.Type> forPresetTypes(Set<TaggingPresetType> types) { 618 return types == null ? new HashSet<>() : types.stream()617 return types == null ? new EnumSet<>() : types.stream() 619 618 .map(Type::forPresetType) 620 619 .collect(Collectors.toCollection(() -> EnumSet.noneOf(Type.class))); -
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/TileZXY.java
r19176 r19181 41 41 * @return The x coordinate for this tile 42 42 */ 43 @SuppressWarnings("PMD.ShortMethodName") 43 44 public int x() { 44 45 return this.x; … … 49 50 * @return The y coordinate for this tile 50 51 */ 52 @SuppressWarnings("PMD.ShortMethodName") 51 53 public int y() { 52 54 return this.y;
Note:
See TracChangeset
for help on using the changeset viewer.