Changeset 6169 in josm for trunk/src/org/openstreetmap/josm/data/coor/EastNorth.java
- Timestamp:
- 2013-08-21T10:14:51+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/EastNorth.java
r6167 r6169 9 9 * @author Imi 10 10 */ 11 public class EastNorth extends Coordinate { 11 public class EastNorth extends Coordinate implements Cloneable { 12 12 13 13 public EastNorth(double east, double north) { … … 132 132 133 133 @Override 134 public EastNorth clone() { 135 return newEastNorth(x, y);134 public EastNorth clone() throws CloneNotSupportedException { 135 return (EastNorth) super.clone(); 136 136 } 137 137 }
Note:
See TracChangeset
for help on using the changeset viewer.