Changeset 11454 in josm for trunk/src/org/openstreetmap/josm/gui
- Timestamp:
- 2017-01-12T01:42:44+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 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);
Note:
See TracChangeset
for help on using the changeset viewer.