Changeset 9990 in josm
- Timestamp:
- 2016-03-14T01:58:27+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java
r9482 r9990 416 416 * Base class of all other Copy* inner classes. 417 417 */ 418 abstract class CopyAction extends AbstractAction implements ListSelectionListener {418 abstract static class CopyAction extends AbstractAction implements ListSelectionListener { 419 419 420 420 protected CopyAction(String icon_name, String action_name, String short_description) { -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/ListProjectionChoice.java
r9239 r9990 85 85 } 86 86 87 protected class CBPanel extends JPanel {87 protected static class CBPanel extends JPanel { 88 88 public JosmComboBox<String> prefcb; 89 89 -
trunk/src/org/openstreetmap/josm/io/OsmServerLocationReader.java
r9070 r9990 33 33 } 34 34 35 protected abstract class Parser<T> {35 protected abstract static class Parser<T> { 36 36 protected final ProgressMonitor progressMonitor; 37 37 protected final Compression compression; -
trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/LoadDataHandler.java
r8927 r9990 97 97 } 98 98 99 protected class LoadDataTask extends DownloadOsmTask.AbstractInternalTask {99 protected static class LoadDataTask extends DownloadOsmTask.AbstractInternalTask { 100 100 101 101 protected final String layerName; -
trunk/src/org/openstreetmap/josm/tools/template_engine/ContextSwitchTemplate.java
r8510 r9990 40 40 }; 41 41 42 private abstract class ContextProvider extends Match {42 private abstract static class ContextProvider extends Match { 43 43 protected Match condition; 44 44
Note:
See TracChangeset
for help on using the changeset viewer.