Changeset 12783 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-09-08T02:50:52+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2GridShiftFileWrapper.java
r12777 r12783 24 24 private final String gridFileName; 25 25 26 public static f loat NTV2_SOURCE_PRIORITY_LOCAL = 10f;27 public static f loat NTV2_SOURCE_PRIORITY_DOWNLOAD = 5f;26 public static final float NTV2_SOURCE_PRIORITY_LOCAL = 10f; 27 public static final float NTV2_SOURCE_PRIORITY_DOWNLOAD = 5f; 28 28 29 private static Map<Float, NTV2GridShiftFileSource> sources = 30 new TreeMap<Float, NTV2GridShiftFileSource>(Collections.reverseOrder()); 29 private static Map<Float, NTV2GridShiftFileSource> sources = new TreeMap<>(Collections.reverseOrder()); 31 30 32 31 /** -
trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2Proj4DirGridShiftFileSource.java
r12777 r12783 18 18 * @since 12777 19 19 */ 20 public class NTV2Proj4DirGridShiftFileSource implements NTV2GridShiftFileSource, PlatformVisitor<List<File>> {20 public final class NTV2Proj4DirGridShiftFileSource implements NTV2GridShiftFileSource, PlatformVisitor<List<File>> { 21 21 22 22 private NTV2Proj4DirGridShiftFileSource() { -
trunk/src/org/openstreetmap/josm/tools/PlatformHook.java
r12780 r12783 34 34 * Visitor to construct a PlatformHook from a given {@link Platform} object. 35 35 */ 36 staticfinal PlatformVisitor<PlatformHook> CONSTRUCT_FROM_PLATFORM = new PlatformVisitor<PlatformHook>() {36 final PlatformVisitor<PlatformHook> CONSTRUCT_FROM_PLATFORM = new PlatformVisitor<PlatformHook>() { 37 37 @Override 38 38 public PlatformHook visitUnixoid() {
Note:
See TracChangeset
for help on using the changeset viewer.