Ignore:
Timestamp:
2024-06-17T19:37:02+02:00 (22 months ago)
Author:
taylor.smock
Message:

Cleanup some new PMD warnings from PMD 7.x (followup of r19101)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/CustomProjection.java

    r18494 r19108  
    4141/**
    4242 * Custom projection.
    43  *
     43 * <p>
    4444 * Inspired by PROJ.4 and Proj4J.
    4545 * @since 5072
     
    5959    /**
    6060     * pref String that defines the projection
    61      *
     61     * <p>
    6262     * null means fall back mode (Mercator)
    6363     */
     
    223223     * @param pref the string that defines the custom projection
    224224     */
     225    @SuppressWarnings("PMD.PreserveStackTrace") // PMD 7.2.x doesn't like log + new exception here for some reason.
    225226    public CustomProjection(String name, String code, String pref) {
    226227        this.name = name;
     
    874875    /**
    875876     * Return true, if a geographic coordinate reference system is represented.
    876      *
     877     * <p>
    877878     * I.e. if it returns latitude/longitude values rather than Cartesian
    878879     * east/north coordinates on a flat surface.
Note: See TracChangeset for help on using the changeset viewer.