Changeset 36088 in osm
- Timestamp:
- 2023-05-30T19:54:00+02:00 (18 months ago)
- Location:
- applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/HouseNumberInputDialog.java
r35827 r36088 123 123 /** 124 124 * This method initializes this 125 *126 * @return void127 125 */ 128 126 private void initialize() { -
applications/editors/josm/plugins/terracer/src/org/openstreetmap/josm/plugins/terracer/TerracerAction.java
r35978 r36088 77 77 } 78 78 79 pr otectedstatic Set<Relation> findAssociatedStreets(Collection<OsmPrimitive> objects) {79 private static Set<Relation> findAssociatedStreets(Collection<OsmPrimitive> objects) { 80 80 Set<Relation> result = new HashSet<>(); 81 81 if (objects != null) { … … 248 248 /** 249 249 * Sorts the house number nodes according their numbers only 250 * 251 * @param house 252 * number nodes 250 * arguments are house number nodes 253 251 */ 254 252 static class HousenumberNodeComparator implements Comparator<Node> { … … 513 511 * @param associatedStreet The associated street. Used to determine if addr:street should be set or not. 514 512 * @param buildingValue The value for {@code building} key to add 515 * @return {@code outline}516 513 * @throws UserCancelException if user cancels the operation 517 514 */
Note:
See TracChangeset
for help on using the changeset viewer.