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/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java

    r7704 r8291  
    5757     * @param changesets the collection of changesets. Assumes an empty collection if null.
    5858     * @return the download task
    59      * @throws IllegalArgumentException thrown if parent is null
     59     * @throws IllegalArgumentException if parent is null
    6060     */
    6161    public static ChangesetHeaderDownloadTask buildTaskForChangesets(Component parent, Collection<Changeset> changesets) {
     
    124124     * @param dialogParent the parent reference component for the {@link org.openstreetmap.josm.gui.PleaseWaitDialog}. Must not be null.
    125125     * @param ids the collection of ids. Empty collection assumed if null.
    126      * @throws IllegalArgumentException thrown if dialogParent is null
    127      */
    128     public ChangesetHeaderDownloadTask(Component dialogParent, Collection<Integer> ids) throws IllegalArgumentException{
     126     * @throws IllegalArgumentException if dialogParent is null
     127     */
     128    public ChangesetHeaderDownloadTask(Component dialogParent, Collection<Integer> ids) {
    129129        this(dialogParent, ids, false);
    130130    }
     
    139139     * @param ids the collection of ids. Empty collection assumed if null.
    140140     * @param includeDiscussion determines if discussion comments must be downloaded or not
    141      * @throws IllegalArgumentException thrown if dialogParent is null
     141     * @throws IllegalArgumentException if dialogParent is null
    142142     * @since 7704
    143143     */
    144     public ChangesetHeaderDownloadTask(Component dialogParent, Collection<Integer> ids, boolean includeDiscussion)
    145             throws IllegalArgumentException {
     144    public ChangesetHeaderDownloadTask(Component dialogParent, Collection<Integer> ids, boolean includeDiscussion) {
    146145        super(dialogParent, tr("Download changesets"), false /* don't ignore exceptions */);
    147146        init(ids);
Note: See TracChangeset for help on using the changeset viewer.