Ignore:
Timestamp:
2017-02-25T20:47:05+01:00 (7 years ago)
Author:
Don-vip
Message:

checkstyle - enable CatchParameterName rule

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/date/DateUtils.java

    r11288 r11620  
    5050        try {
    5151            fact = DatatypeFactory.newInstance();
    52         } catch (DatatypeConfigurationException ce) {
    53             Main.error(ce);
     52        } catch (DatatypeConfigurationException e) {
     53            Main.error(e);
    5454        }
    5555        XML_DATE = fact;
    5656    }
    5757
     58    /**
     59     * Constructs a new {@code DateUtils}.
     60     */
    5861    protected DateUtils() {
    5962        // Hide default constructor for utils classes
Note: See TracChangeset for help on using the changeset viewer.