Changeset 35343 in osm for applications/editors
- Timestamp:
- 2020-03-01T00:40:49+01:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/AddressEditContainer.java
r34880 r35343 184 184 } 185 185 186 OSMAddress aNode = null;187 186 // Address nodes are recycled in order to keep instance variables like guessed names 188 aNode = OsmFactory.createNode(n);187 OSMAddress aNode = OsmFactory.createNode(n); 189 188 190 189 if (aNode != null) { -
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/OSMAddress.java
r34880 r35343 420 420 return 0; 421 421 422 int cc = 0; 423 cc = this.getCountry().compareTo(other.getCountry()); 422 int cc = this.getCountry().compareTo(other.getCountry()); 424 423 if (cc == 0) { 425 424 cc = this.getState().compareTo(other.getState()); -
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/OSMEntityBase.java
r34880 r35343 26 26 * </ol> 27 27 */ 28 public class OSMEntityBase implements IOSMEntity , Comparable<IOSMEntity>{28 public class OSMEntityBase implements IOSMEntity { 29 29 public static final String ANONYMOUS = tr("No name"); 30 30 private static List<IAddressEditContainerListener> containerListeners = new ArrayList<>();
Note:
See TracChangeset
for help on using the changeset viewer.