Ignore:
Timestamp:
2016-07-24T23:50:15+02:00 (8 years ago)
Author:
Don-vip
Message:

sonar - squid:RedundantThrowsDeclarationCheck - Throws declarations should not be superfluous

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryWay.java

    r9067 r10632  
    9797     * @throws IndexOutOfBoundsException if  idx < 0 || idx >= {#see {@link #getNumNodes()}
    9898     */
    99     public long getNodeId(int idx) throws IndexOutOfBoundsException {
     99    public long getNodeId(int idx) {
    100100        if (idx < 0 || idx >= nodeIds.size())
    101101            throw new IndexOutOfBoundsException(tr("Parameter {0} not in range 0..{1}. Got ''{2}''.", "idx", nodeIds.size(), idx));
Note: See TracChangeset for help on using the changeset viewer.