Ignore:
Timestamp:
2017-02-23T23:44:29+01:00 (7 years ago)
Author:
Don-vip
Message:

sonar - squid:S1172 - Unused method parameters should be removed

File:
1 edited

Legend:

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

    r11553 r11604  
    8383     *
    8484     * @param e the exception throw by the API
    85      * @param monitor a progress monitor
    8685     * @throws OsmTransferException if we can't recover from the exception
    8786     */
    88     protected void recoverFromGoneOnServer(OsmApiPrimitiveGoneException e, ProgressMonitor monitor) throws OsmTransferException {
     87    protected void recoverFromGoneOnServer(OsmApiPrimitiveGoneException e) throws OsmTransferException {
    8988        if (!e.isKnownPrimitive()) throw e;
    9089        OsmPrimitive p = getPrimitive(e.getPrimitiveType(), e.getPrimitiveId());
     
    127126                    break;
    128127                } catch (OsmApiPrimitiveGoneException e) {
    129                     recoverFromGoneOnServer(e, monitor);
     128                    recoverFromGoneOnServer(e);
    130129                }
    131130            }
Note: See TracChangeset for help on using the changeset viewer.