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/actions/UploadSelectionAction.java

    r7005 r8291  
    3838/**
    3939 * Uploads the current selection to the server.
    40  *
     40 * @since 2250
    4141 */
    42 public class UploadSelectionAction extends JosmAction{
     42public class UploadSelectionAction extends JosmAction {
     43    /**
     44     * Constructs a new {@code UploadSelectionAction}.
     45     */
    4346    public UploadSelectionAction() {
    4447        super(
     
    239242         * @param base the base collection. Must not be null.
    240243         * @return the "hull"
    241          * @throws IllegalArgumentException thrown if base is null
     244         * @throws IllegalArgumentException if base is null
    242245         */
    243         public Set<OsmPrimitive> build(Collection<OsmPrimitive> base) throws IllegalArgumentException{
     246        public Set<OsmPrimitive> build(Collection<OsmPrimitive> base) {
    244247            CheckParameterUtil.ensureParameterNotNull(base, "base");
    245248            hull = new HashSet<>();
Note: See TracChangeset for help on using the changeset viewer.