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/ChangesetQuery.java

    r6822 r6830  
    5656    private Collection<Long> changesetIds = null;
    5757
    58     public ChangesetQuery() {}
     58    /**
     59     * Constructs a new {@code ChangesetQuery}.
     60     */
     61    public ChangesetQuery() {
     62
     63    }
    5964
    6065    /**
    6166     * Restricts the query to changesets owned by the user with id <code>uid</code>.
    6267     *
    63      * @param uid the uid of the user. >0 expected.
     68     * @param uid the uid of the user. &gt; 0 expected.
    6469     * @return the query object with the applied restriction
    65      * @throws IllegalArgumentException thrown if uid <= 0
     70     * @throws IllegalArgumentException thrown if uid &lt;= 0
    6671     * @see #forUser(String)
    6772     */
     
    462467
    463468        /**
    464          * Parses the changeset query given as URL query parameters and replies a
    465          * {@link ChangesetQuery}
     469         * Parses the changeset query given as URL query parameters and replies a {@link ChangesetQuery}.
    466470         *
    467471         * <code>query</code> is the query part of a API url for querying changesets,
     
    470474         * Example for an query string:<br>
    471475         * <pre>
    472          *    uid=1234&open=true
     476         *    uid=1234&amp;open=true
    473477         * </pre>
    474478         *
Note: See TracChangeset for help on using the changeset viewer.