Changeset 9850 in josm for trunk/src/org
- Timestamp:
- 2016-02-22T01:08:28+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/CorrelateGpxWithImages.java
r9752 r9850 1479 1479 Pair<Timezone, Offset> splitOutTimezone() { 1480 1480 // In hours, rounded to two decimal places 1481 double tz = (withoutDayOffset().getSeconds() * 100L / (60L * 60L)) / 100.0;1481 double tz = (withoutDayOffset().getSeconds() * 100L / 3600.0) / 100.0; 1482 1482 1483 1483 // Due to imprecise clocks we might get a "+3:28" timezone, which should obviously be 3:30 with -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/ComboMultiSelect.java
r9665 r9850 302 302 return DIFFERENT; 303 303 String displayValue = getDisplayValue(true); 304 return displayValue != null ? displayValue.replaceAll("<.*>", "") : null; // remove additional markup, e.g. <br>304 return displayValue != null ? displayValue.replaceAll("<.*>", "") : ""; // remove additional markup, e.g. <br> 305 305 } 306 306 -
trunk/src/org/openstreetmap/josm/tools/OverpassTurboQueryWizard.java
r9717 r9850 65 65 } } 66 66 ); 67 if ( result == Boolean.FALSE) {67 if (Boolean.FALSE.equals(result)) { 68 68 throw new UncheckedParseException(); 69 69 }
Note:
See TracChangeset
for help on using the changeset viewer.