Ignore:
Timestamp:
2026-02-20T11:51:47+01:00 (43 hours ago)
Author:
stoecker
Message:

remove a lot of PMD warnings, especially outdated ignores, see #24635

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/RenderingCLI.java

    r19519 r19535  
    274274                try {
    275275                    argBounds = new Bounds(arg, ",", Bounds.ParseMethod.LEFT_BOTTOM_RIGHT_TOP, false);
    276                 } catch (IllegalArgumentException iae) { // NOPMD
     276                } catch (IllegalArgumentException iae) {
    277277                    throw new OptionParseException(
    278278                            tr("Unable to parse {0} parameter: {1}", "--bounds", iae.getMessage()), iae);
     
    309309                double lat = LatLonParser.parseCoordinate(parts[1]);
    310310                argAnchor = new LatLon(lat, lon);
    311             } catch (IllegalArgumentException iae) { // NOPMD
     311            } catch (IllegalArgumentException iae) {
    312312                throw new OptionParseException(tr("In option {0}: {1}", "--anchor", iae.getMessage()), iae);
    313313            }
Note: See TracChangeset for help on using the changeset viewer.