Ignore:
Timestamp:
2009-12-30T20:18:59+01:00 (14 years ago)
Author:
stoecker
Message:

fix bad line endings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java

    r2689 r2711  
    2929 * This is an asynchronous task for downloading a collection of changests from the OSM
    3030 * server.
    31  * 
     31 *
    3232 * The  task only downloads the changeset properties without the changeset content. It
    3333 * updates the global {@see ChangesetCache}.
    34  * 
     34 *
    3535 */
    3636public class ChangesetHeaderDownloadTask extends PleaseWaitRunnable implements ChangesetDownloadTask{
     
    3838    /**
    3939     * Builds a download task from for a collection of changesets.
    40      * 
     40     *
    4141     * Ignores null values and changesets with {@see Changeset#isNew()} == true.
    42      * 
     42     *
    4343     * @param changesets the collection of changesets. Assumes an empty collection if null.
    4444     * @return the download task
     
    5050    /**
    5151     * Builds a download task from for a collection of changesets.
    52      * 
     52     *
    5353     * Ignores null values and changesets with {@see Changeset#isNew()} == true.
    54      * 
     54     *
    5555     * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed.
    5656     * Must not be null.
     
    7878
    7979    }
    80 
    8180
    8281    private Set<Integer> idsToDownload;
     
    104103     * Creates the download task for a collection of changeset ids. Uses a {@see PleaseWaitDialog}
    105104     * whose parent is {@see Main#parent}.
    106      * 
     105     *
    107106     * Null ids or or ids <= 0 in the id collection are ignored.
    108      * 
     107     *
    109108     * @param ids the collection of ids. Empty collection assumed if null.
    110109     */
     
    118117     * Creates the download task for a collection of changeset ids. Uses a {@see PleaseWaitDialog}
    119118     * whose parent is the parent window of <code>dialogParent</code>.
    120      * 
     119     *
    121120     * Null ids or or ids <= 0 in the id collection are ignored.
    122      * 
     121     *
    123122     * @param dialogParent the parent reference component for the {@see PleaseWaitDialog}. Must not be null.
    124123     * @param ids the collection of ids. Empty collection assumed if null.
Note: See TracChangeset for help on using the changeset viewer.