- Timestamp:
- 2017-04-01T02:11:32+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/placement/CompletelyInsideAreaStrategy.java
r11748 r11810 86 86 } 87 87 88 private MapViewPositionAndRotation centerOf(MapViewState mapViewState, Rectangle centeredNBounds) {88 private static MapViewPositionAndRotation centerOf(MapViewState mapViewState, Rectangle centeredNBounds) { 89 89 return new MapViewPositionAndRotation( 90 90 mapViewState.getForView(centeredNBounds.getCenterX(), centeredNBounds.getCenterY()), 0); -
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/CommonSettingsPanel.java
r11786 r11810 114 114 } 115 115 116 private void removeCacheFiles(String path) {116 private static void removeCacheFiles(String path) { 117 117 File directory = new File(path); 118 118 File[] cacheFiles = directory.listFiles((FilenameFilter) (dir, name) -> name.endsWith(".data") || name.endsWith(".key")); -
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java
r11655 r11810 866 866 } 867 867 868 private OffsetBookmark getRow(int row) {868 private static OffsetBookmark getRow(int row) { 869 869 return OffsetBookmark.getBookmarkByIndex(row); 870 870 }
Note:
See TracChangeset
for help on using the changeset viewer.