Changeset 9634 in josm
- Timestamp:
- 2016-01-26T00:20:58+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r9576 r9634 674 674 // remove mouse states that are in the queue. Our mouse state is newer. 675 675 incomingMouseState.clear(); 676 incomingMouseState.offer(ms); 676 if (!incomingMouseState.offer(ms)) { 677 Main.warn("Unable to handle new MouseState: " + ms); 678 } 677 679 } 678 680 } -
trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
r9623 r9634 587 587 } 588 588 589 private class ZoomData { 589 private static class ZoomData { 590 590 private final EastNorth center; 591 591 private final double scale; -
trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
r9627 r9634 207 207 } 208 208 panel.add(new JLabel("<html><body width=\"500\"><b>"+b.toString().trim()+"</b></body></html>"), GBC.eol().insets(0, 0, 0, 10)); 209 if (!details.isEmpty()) { 209 if (details != null && !details.isEmpty()) { 210 210 panel.add(new JLabel(tr("Details:")), GBC.eol().insets(0, 0, 0, 10)); 211 211 JosmTextArea area = new JosmTextArea(details); -
trunk/src/org/openstreetmap/josm/tools/MultikeyActionsHandler.java
r9078 r9634 34 34 private final Map<MultikeyShortcutAction, MyAction> myActions = new HashMap<>(); 35 35 36 private final class ShowLayersPopupWorker implements Runnable { 36 private static final class ShowLayersPopupWorker implements Runnable { 37 37 private final MyAction action; 38 38
Note:
See TracChangeset
for help on using the changeset viewer.