Changeset 11538 in josm
- Timestamp:
- 2017-02-04T15:39:06+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/JosmAction.java
r10972 r11538 356 356 @Override 357 357 public String toString() { 358 return "LayerChangeAdapter [" + JosmAction.this .toString()+ ']';358 return "LayerChangeAdapter [" + JosmAction.this + ']'; 359 359 } 360 360 } … … 371 371 @Override 372 372 public String toString() { 373 return "ActiveLayerChangeAdapter [" + JosmAction.this .toString()+ ']';373 return "ActiveLayerChangeAdapter [" + JosmAction.this + ']'; 374 374 } 375 375 } … … 386 386 @Override 387 387 public String toString() { 388 return "SelectionChangeAdapter [" + JosmAction.this .toString()+ ']';388 return "SelectionChangeAdapter [" + JosmAction.this + ']'; 389 389 } 390 390 } -
trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java
r11383 r11538 312 312 @Override 313 313 public String toString() { 314 return "ToggleDialogAction [" + ToggleDialog.this .toString()+ ']';314 return "ToggleDialogAction [" + ToggleDialog.this + ']'; 315 315 } 316 316 } -
trunk/src/org/openstreetmap/josm/tools/Pair.java
r10300 r11538 62 62 @Override 63 63 public String toString() { 64 return '<'+a.toString()+','+b.toString()+'>';64 return "<" + a + ',' + b + '>'; 65 65 } 66 66
Note:
See TracChangeset
for help on using the changeset viewer.