Changeset 7371 in josm


Ignore:
Timestamp:
2014-08-07T01:18:23+02:00 (10 years ago)
Author:
Don-vip
Message:

make fields final

File:
1 edited

Legend:

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

    r7370 r7371  
    9797        bounds("bounds", true);
    9898
    99         public String key;
    100         public boolean hasValue;
    101 
     99        /** Parameter key */
     100        public final String key;
     101        /** {@code true} if the parameter has a value */
     102        public final boolean hasValue;
     103
     104        /** Map of all parameters by key */
    102105        public static final Map<String, Param> paramsByKey = new HashMap<>();
    103106        static {
Note: See TracChangeset for help on using the changeset viewer.