- Timestamp:
- 2017-01-25T02:15:11+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/CoordinateFormat.java
r9212 r11489 6 6 /** 7 7 * An enumeration of coordinate formats 8 * 8 * @since 1990 9 9 */ 10 10 public enum CoordinateFormat { … … 30 30 EAST_NORTH(tr("Projected Coordinates")); 31 31 32 private String displayName; 32 private final String displayName; 33 33 34 CoordinateFormat(String displayName) { 34 35 this.displayName = displayName; -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/ComparePairType.java
r10680 r11489 31 31 /** the localized display name */ 32 32 private final String displayName; 33 private ListRole[] participatingRoles; 33 private final ListRole[] participatingRoles; 34 34 35 35 ComparePairType(String displayName, ListRole ... participatingRoles) { -
trunk/src/org/openstreetmap/josm/gui/io/UploadStrategy.java
r8444 r11489 22 22 SINGLE_REQUEST_STRATEGY("singlerequest"); 23 23 24 private String preferenceValue; 24 private final String preferenceValue; 25 25 26 26 UploadStrategy(String preferenceValue) { -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParser.jj
r11374 r11489 72 72 DEFAULT(2); 73 73 74 int idx; // the integer, which javacc assigns to this state 74 final int idx; // the integer, which javacc assigns to this state 75 75 76 76 LexicalState(int idx) { -
trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginUpdatePolicyPanel.java
r10626 r11489 36 36 NEVER("never"); 37 37 38 private String preferenceValue; 38 private final String preferenceValue; 39 39 40 Policy(String preferenceValue) { 40 41 this.preferenceValue = preferenceValue; -
trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreferencesPanel.java
r11366 r11489 66 66 USE_SOCKS_PROXY("use-socks-proxy"); 67 67 68 private String policyName; 68 private final String policyName; 69 69 70 ProxyPolicy(String policyName) { 70 71 this.policyName = policyName;
Note:
See TracChangeset
for help on using the changeset viewer.