Changeset 16977 in josm for trunk


Ignore:
Timestamp:
2020-08-30T09:46:45+02:00 (4 years ago)
Author:
simon04
Message:

Fix typo in Javadoc

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java

    r16643 r16977  
    464464     * Note that the order of the list is not preserved between method invocations.
    465465     *
    466      * @return the tags of this tag collection as list. There are no dupplicate values.
     466     * @return the tags of this tag collection as list. There are no duplicate values.
    467467     */
    468468    public List<Tag> asList() {
     
    713713
    714714    /**
    715      * Replies the sum of all numeric tag values. Ignores dupplicates.
     715     * Replies the sum of all numeric tag values. Ignores duplicates.
    716716     * @param key the key to look up
    717717     *
  • trunk/src/org/openstreetmap/josm/data/osm/TagMap.java

    r16962 r16977  
    154154
    155155    /**
    156      * Creates a new map using the given list of tags. For dupplicate 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.
    157157     * @param tags The tags
    158158     * @since 10736
  • trunk/src/org/openstreetmap/josm/gui/layer/LayerManager.java

    r15565 r16977  
    155155         * Schedule the removal of other layers after this layer has been deleted.
    156156         * <p>
    157          * Dupplicate removal requests are ignored.
     157         * Duplicate removal requests are ignored.
    158158         * @param layers The layers to remove.
    159159         * @since 10507
  • trunk/test/unit/org/openstreetmap/josm/gui/layer/AutosaveTaskTest.java

    r14201 r16977  
    215215     */
    216216    @Test
    217     public void testAutosaveHandlesDupplicateNames() {
     217    public void testAutosaveHandlesDuplicateNames() {
    218218        DataSet data1 = new DataSet();
    219219        OsmDataLayer layer1 = new OsmDataLayer(data1, "OsmData", null);
  • trunk/test/unit/org/openstreetmap/josm/gui/layer/LayerManagerTest.java

    r16618 r16977  
    386386     */
    387387    @Test(expected = IllegalArgumentException.class)
    388     public void testAddLayerChangeListenerDupplicates() {
     388    public void testAddLayerChangeListenerDuplicates() {
    389389        CapturingLayerChangeListener l = new CapturingLayerChangeListener();
    390390        layerManager.addLayerChangeListener(l);
Note: See TracChangeset for help on using the changeset viewer.