- Timestamp:
- 2020-08-30T09:46:45+02:00 (4 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
r16643 r16977 464 464 * Note that the order of the list is not preserved between method invocations. 465 465 * 466 * @return the tags of this tag collection as list. There are no dup plicate values.466 * @return the tags of this tag collection as list. There are no duplicate values. 467 467 */ 468 468 public List<Tag> asList() { … … 713 713 714 714 /** 715 * Replies the sum of all numeric tag values. Ignores dup plicates.715 * Replies the sum of all numeric tag values. Ignores duplicates. 716 716 * @param key the key to look up 717 717 * -
trunk/src/org/openstreetmap/josm/data/osm/TagMap.java
r16962 r16977 154 154 155 155 /** 156 * Creates a new map using the given list of tags. For dup plicate keys the last value found is used.156 * Creates a new map using the given list of tags. For duplicate keys the last value found is used. 157 157 * @param tags The tags 158 158 * @since 10736 -
trunk/src/org/openstreetmap/josm/gui/layer/LayerManager.java
r15565 r16977 155 155 * Schedule the removal of other layers after this layer has been deleted. 156 156 * <p> 157 * Dup plicate removal requests are ignored.157 * Duplicate removal requests are ignored. 158 158 * @param layers The layers to remove. 159 159 * @since 10507 -
trunk/test/unit/org/openstreetmap/josm/gui/layer/AutosaveTaskTest.java
r14201 r16977 215 215 */ 216 216 @Test 217 public void testAutosaveHandlesDup plicateNames() {217 public void testAutosaveHandlesDuplicateNames() { 218 218 DataSet data1 = new DataSet(); 219 219 OsmDataLayer layer1 = new OsmDataLayer(data1, "OsmData", null); -
trunk/test/unit/org/openstreetmap/josm/gui/layer/LayerManagerTest.java
r16618 r16977 386 386 */ 387 387 @Test(expected = IllegalArgumentException.class) 388 public void testAddLayerChangeListenerDup plicates() {388 public void testAddLayerChangeListenerDuplicates() { 389 389 CapturingLayerChangeListener l = new CapturingLayerChangeListener(); 390 390 layerManager.addLayerChangeListener(l);
Note:
See TracChangeset
for help on using the changeset viewer.