- Timestamp:
- 2017-10-17T20:52:27+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Node.java
r12813 r13012 41 41 */ 42 42 private Object eastNorthCacheKey; 43 44 /**45 * Determines if this node has valid coordinates.46 * @return {@code true} if this node has valid coordinates47 * @since 782848 */49 @Override50 public boolean isLatLonKnown() {51 // We cannot use default implementation - if we remove this implementation, we will break binary compatibility.52 return !Double.isNaN(lat) && !Double.isNaN(lon);53 }54 43 55 44 @Override -
trunk/src/org/openstreetmap/josm/data/preferences/AbstractToStringProperty.java
r12983 r13012 146 146 } 147 147 148 @Override149 public CachingProperty<T> cached() {150 // Removing this implementation breaks binary compatibility151 return super.cached();152 }153 148 }
Note:
See TracChangeset
for help on using the changeset viewer.