Changeset 11454 in josm
- Timestamp:
- 2017-01-12T01:42:44+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/datatransfer/ClipboardUtils.java
r10801 r11454 141 141 try { 142 142 getClipboard().setContents(transferable, new DoNothingClipboardOwner()); 143 return true;143 return Boolean.TRUE; 144 144 } catch (IllegalStateException ex) { 145 145 Main.error(ex); 146 return false;146 return Boolean.FALSE; 147 147 } 148 148 }); -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactory.java
r11374 r11454 197 197 testFloat = Float.parseFloat(test); 198 198 } catch (NumberFormatException e) { 199 return false;199 return Boolean.FALSE; 200 200 } 201 201 float prototypeFloat = Float.parseFloat(prototype); -
trunk/src/org/openstreetmap/josm/tools/RightAndLefthandTraffic.java
r11427 r11454 157 157 OsmWriter w = OsmWriterFactory.createOsmWriter(new PrintWriter(writer), false, ds.getVersion()) 158 158 ) { 159 w.header( false);159 w.header(Boolean.FALSE); 160 160 w.writeContent(ds); 161 161 w.footer(); -
trunk/src/org/openstreetmap/josm/tools/Shortcut.java
r11397 r11454 404 404 return shortcuts.stream() 405 405 .map(Shortcut::save) 406 .reduce( false, Boolean::logicalOr); // has changed406 .reduce(Boolean.FALSE, Boolean::logicalOr); // has changed 407 407 } 408 408
Note:
See TracChangeset
for help on using the changeset viewer.