Changeset 15951 in josm for trunk/src/org
- Timestamp:
- 2020-02-28T00:58:00+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/OsmUtils.java
r15950 r15951 83 83 */ 84 84 public static boolean isReversed(String value) { 85 if (value == null) { 86 return false; 87 } 85 88 switch (value) { 86 89 case "reverse": … … 98 101 */ 99 102 public static boolean isTrue(String value) { 103 if (value == null) { 104 return false; 105 } 100 106 switch (value) { 101 107 case "true": … … 115 121 */ 116 122 public static boolean isFalse(String value) { 123 if (value == null) { 124 return false; 125 } 117 126 switch (value) { 118 127 case "false":
Note:
See TracChangeset
for help on using the changeset viewer.