Changeset 10606 in josm for trunk/src/org
- Timestamp:
- 2016-07-23T15:17:15+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/DuplicateAction.java
r10604 r10606 18 18 19 19 /** 20 * An action that dup plicates the given nodes. They are not added to the clipboard.20 * An action that duplicates the given nodes. They are not added to the clipboard. 21 21 */ 22 22 public final class DuplicateAction extends JosmAction { -
trunk/src/org/openstreetmap/josm/gui/datatransfer/data/PrimitiveTransferData.java
r10604 r10606 62 62 */ 63 63 private PrimitiveTransferData(Collection<? extends OsmPrimitive> primitives, ReferenceGetter referencedGetter) { 64 // convert to hash set first to remove dup plicates64 // convert to hash set first to remove duplicates 65 65 HashSet<OsmPrimitive> visited = new HashSet<>(primitives); 66 66 this.direct = new ArrayList<>(visited.size()); -
trunk/src/org/openstreetmap/josm/gui/dialogs/layer/DuplicateAction.java
r10605 r10606 19 19 20 20 /** 21 * The action to dup plicate the given selected layer into another layer.21 * The action to duplicate the given selected layer into another layer. 22 22 */ 23 23 public final class DuplicateAction extends AbstractAction implements IEnabledStateUpdating { -
trunk/src/org/openstreetmap/josm/gui/dialogs/layer/LayerListTransferHandler.java
r10605 r10606 145 145 * Suggests a new name in the form "copy of name" 146 146 * @param name The base name 147 * @param namesToAvoid The list of layers to use to avoid dup plicate names.147 * @param namesToAvoid The list of layers to use to avoid duplicate names. 148 148 * @return The new name 149 149 */
Note:
See TracChangeset
for help on using the changeset viewer.