- Timestamp:
- 2016-11-04T17:58:48+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/WMTSTileSource.java
r11217 r11218 224 224 } 225 225 226 private List<Entry<String, List<Layer>>> groupLayersByName(Collection<Layer> layers) {226 private static List<Entry<String, List<Layer>>> groupLayersByName(Collection<Layer> layers) { 227 227 Map<String, List<Layer>> layerByName = layers.stream().collect(Collectors.groupingBy(x -> x.name)); 228 228 return layerByName.entrySet().stream().sorted(Map.Entry.comparingByKey()).collect(Collectors.toList()); … … 247 247 private ScaleList nativeScaleList; 248 248 249 private String defaultLayer;249 private final String defaultLayer; 250 250 251 251 /** -
trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java
r11162 r11218 373 373 * @return the dot directory 374 374 */ 375 private File getDotDirectory() {375 private static File getDotDirectory() { 376 376 String dirName = "." + Main.pref.getJOSMDirectoryBaseName().toLowerCase(Locale.ENGLISH); 377 377 return new File(System.getProperty("user.home"), dirName); -
trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java
r11191 r11218 100 100 */ 101 101 public FontEntry() { 102 // Default constructor needed for construction by reflection 102 103 } 103 104 -
trunk/src/org/openstreetmap/josm/tools/Shortcut.java
r11207 r11218 292 292 } 293 293 } 294 } ;294 } 295 295 296 296 // and here our modifier groups
Note:
See TracChangeset
for help on using the changeset viewer.