Changeset 6883 in josm for trunk/src/org/openstreetmap/josm/data/coor
- Timestamp:
- 2014-02-25T01:31:24+01:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/coor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/CoordinateFormat.java
r3530 r6883 56 56 * @return the default coordinate format 57 57 */ 58 static public CoordinateFormat getDefaultFormat() {58 public static CoordinateFormat getDefaultFormat() { 59 59 return defaultCoordinateFormat; 60 60 } … … 65 65 * @param format the default coordinate format 66 66 */ 67 static public void setCoordinateFormat(CoordinateFormat format) {67 public static void setCoordinateFormat(CoordinateFormat format) { 68 68 if (format != null) { 69 69 defaultCoordinateFormat = format; -
trunk/src/org/openstreetmap/josm/data/coor/LatLon.java
r6830 r6883 191 191 } 192 192 193 public final staticString SOUTH = trc("compass", "S");194 public final staticString NORTH = trc("compass", "N");193 public static final String SOUTH = trc("compass", "S"); 194 public static final String NORTH = trc("compass", "N"); 195 195 public String latToString(CoordinateFormat d) { 196 196 switch(d) { … … 211 211 } 212 212 213 public final staticString WEST = trc("compass", "W");214 public final staticString EAST = trc("compass", "E");213 public static final String WEST = trc("compass", "W"); 214 public static final String EAST = trc("compass", "E"); 215 215 public String lonToString(CoordinateFormat d) { 216 216 switch(d) {
Note:
See TracChangeset
for help on using the changeset viewer.