Ignore:
Timestamp:
2015-04-29T01:44:01+02:00 (9 years ago)
Author:
Don-vip
Message:

fix squid:RedundantThrowsDeclarationCheck + consistent Javadoc for exceptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/Command.java

    r8285 r8291  
    119119     *
    120120     * @param layer the data layer. Must not be null.
    121      * @throws IllegalArgumentException thrown if layer is null
    122      */
    123     public Command(OsmDataLayer layer) throws IllegalArgumentException {
     121     * @throws IllegalArgumentException if layer is null
     122     */
     123    public Command(OsmDataLayer layer) {
    124124        CheckParameterUtil.ensureParameterNotNull(layer, "layer");
    125125        this.layer = layer;
Note: See TracChangeset for help on using the changeset viewer.