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/io/OsmServerHistoryReader.java

    r7033 r8291  
    2929     * @param id the id of the primitive
    3030     *
    31      *  @exception IllegalArgumentException thrown, if type is null
     31     *  @throws IllegalArgumentException if type is null
    3232     */
    33     public OsmServerHistoryReader(OsmPrimitiveType type, long id) throws IllegalArgumentException {
     33    public OsmServerHistoryReader(OsmPrimitiveType type, long id) {
    3434        CheckParameterUtil.ensureParameterNotNull(type, "type");
    3535        if (id < 0)
     
    5252     *
    5353     * @return the data set with the parsed history data
    54      * @throws OsmTransferException thrown, if an exception occurs
     54     * @throws OsmTransferException if an exception occurs
    5555     */
    5656    public HistoryDataSet parseHistory(ProgressMonitor progressMonitor) throws OsmTransferException {
Note: See TracChangeset for help on using the changeset viewer.