Ignore:
Timestamp:
2017-01-25T02:15:11+01:00 (7 years ago)
Author:
Don-vip
Message:

error-prone - enums should be immutable, and cannot have non-final fields

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/coor/CoordinateFormat.java

    r9212 r11489  
    66/**
    77 * An enumeration  of coordinate formats
    8  *
     8 * @since 1990
    99 */
    1010public enum CoordinateFormat {
     
    3030    EAST_NORTH(tr("Projected Coordinates"));
    3131
    32     private String displayName;
     32    private final String displayName;
     33
    3334    CoordinateFormat(String displayName) {
    3435        this.displayName = displayName;
Note: See TracChangeset for help on using the changeset viewer.