Changeset 6140 in josm for trunk/src/org/openstreetmap/josm/data/osm/Way.java
- Timestamp:
- 2013-08-11T21:09:08+02:00 (13 years ago)
- File:
-
- 1 edited
-
trunk/src/org/openstreetmap/josm/data/osm/Way.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Way.java
r6105 r6140 232 232 * Contructs a new {@code Way} from an existing {@code Way}. 233 233 * @param original The original {@code Way} to be identically cloned. Must not be null 234 * @param clear Id If true, clears the OSM id as defined by {@link #clearOsmId}. If false, does nothing234 * @param clearMetadata If {@code true}, clears the OSM id and other metadata as defined by {@link #clearOsmMetadata}. If {@code false}, does nothing 235 235 * @since 2410 236 236 */ 237 public Way(Way original, boolean clear Id) {237 public Way(Way original, boolean clearMetadata) { 238 238 super(original.getUniqueId(), true); 239 239 cloneFrom(original); 240 if (clear Id) {241 clearOsm Id();240 if (clearMetadata) { 241 clearOsmMetadata(); 242 242 } 243 243 }
Note:
See TracChangeset
for help on using the changeset viewer.
