Ignore:
Timestamp:
2014-02-10T00:51:53+01:00 (10 years ago)
Author:
Don-vip
Message:

javadoc fixes for jdk8 compatibility

File:
1 edited

Legend:

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

    r6822 r6830  
    7676     * Reads the changeset with id <code>id</code> from the server
    7777     *
    78      * @param id  the changeset id. id > 0 required.
     78     * @param id  the changeset id. id &gt; 0 required.
    7979     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
    8080     * @return the changeset read
    8181     * @throws OsmTransferException thrown if something goes wrong
    82      * @throws IllegalArgumentException if id <= 0
     82     * @throws IllegalArgumentException if id &lt;= 0
    8383     */
    8484    public Changeset readChangeset(long id, ProgressMonitor monitor) throws OsmTransferException {
     
    112112     * Reads the changeset with id <code>id</code> from the server
    113113     *
    114      * @param ids  the list of ids. Ignored if null. Only load changesets for ids > 0.
     114     * @param ids  the list of ids. Ignored if null. Only load changesets for ids &gt; 0.
    115115     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
    116116     * @return the changeset read
    117117     * @throws OsmTransferException thrown if something goes wrong
    118      * @throws IllegalArgumentException if id <= 0
     118     * @throws IllegalArgumentException if id &lt;= 0
    119119     */
    120120    public List<Changeset> readChangesets(Collection<Integer> ids, ProgressMonitor monitor) throws OsmTransferException {
     
    160160     * Downloads the content of a changeset
    161161     *
    162      * @param id the changeset id. >0 required.
     162     * @param id the changeset id. &gt; 0 required.
    163163     * @param monitor the progress monitor. {@link NullProgressMonitor#INSTANCE} assumed if null.
    164164     * @return the changeset content
    165      * @throws IllegalArgumentException thrown if id <= 0
     165     * @throws IllegalArgumentException thrown if id &lt;= 0
    166166     * @throws OsmTransferException thrown if something went wrong
    167167     */
Note: See TracChangeset for help on using the changeset viewer.