Changeset 13173 in josm for trunk/src/org/openstreetmap/josm/data/coor/ILatLon.java
- Timestamp:
- 2017-11-28T00:56:29+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/ILatLon.java
r12729 r13173 2 2 package org.openstreetmap.josm.data.coor; 3 3 4 import org.openstreetmap.josm.Main;5 4 import org.openstreetmap.josm.data.projection.Projecting; 6 5 … … 39 38 40 39 /** 41 * <p>Replies the projected east/north coordinates.</p>42 *43 * <p>Uses the {@link Main#getProjection() global projection} to project the lat/lon-coordinates.</p>44 *45 * @return the east north coordinates or {@code null} if #is46 * @deprecated use {@link #getEastNorth(org.openstreetmap.josm.data.projection.Projecting)}47 */48 @Deprecated49 default EastNorth getEastNorth() {50 return getEastNorth(Main.getProjection());51 }52 53 /**54 40 * Replies the projected east/north coordinates. 55 41 * <p>
Note:
See TracChangeset
for help on using the changeset viewer.