Changeset 13203 in josm


Ignore:
Timestamp:
2017-12-16T23:30:19+01:00 (6 years ago)
Author:
Don-vip
Message:

javadoc fixes + some test timeout increases

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/imagery/WMSImagery.java

    r13199 r13203  
    463463        /**
    464464         * The layer abstract (WMS {@code Abstract})
    465          * @since xxx
     465         * @since 13199
    466466         */
    467467        public final String abstr;
     
    492492         * @param bounds The bounds this layer can be used for
    493493         * @param childLayers The child layers of this layer
    494          * @since xxx
     494         * @since 13199
    495495         */
    496496        public LayerDetails(String name, String ident, String abstr, Set<String> crsList, boolean supportedLayer, Bounds bounds,
  • trunk/src/org/openstreetmap/josm/tools/ListenerList.java

    r12798 r13203  
    248248
    249249    /**
    250      * Creates a new listener list that does not fail if listeners are added ore removed twice.
     250     * Creates a new listener list that does not fail if listeners are added or removed twice.
    251251     * <p>
    252252     * Use of this list is discouraged. You should always use {@link #create()} in new implementations and check your listeners.
  • trunk/test/functional/org/openstreetmap/josm/data/imagery/ImageryCompareTestIT.java

    r13059 r13203  
    2727    @Rule
    2828    @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
    29     public JOSMTestRules test = new JOSMTestRules().preferences().timeout(30000);
     29    public JOSMTestRules test = new JOSMTestRules().preferences().timeout(60000);
    3030
    3131    /**
  • trunk/test/unit/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClientTest.java

    r10989 r13203  
    3030    @Rule
    3131    @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
    32     public JOSMTestRules test = new JOSMTestRules();
     32    public JOSMTestRules test = new JOSMTestRules().timeout(20000);
    3333
    3434    /**
Note: See TracChangeset for help on using the changeset viewer.