Ignore:
Timestamp:
2015-10-08T00:22:36+02:00 (9 years ago)
Author:
Don-vip
Message:

fix Checkstyle issues

Location:
trunk/src/org/openstreetmap/josm/io/session
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/session/OsmDataSessionExporter.java

    r8510 r8836  
    6262
    6363    private class LayerSaveAction extends AbstractAction {
    64         public LayerSaveAction() {
     64        LayerSaveAction() {
    6565            putValue(SMALL_ICON, new ImageProvider("save").setWidth(16).get());
    6666            putValue(SHORT_DESCRIPTION, layer.requiresSaveToFile() ?
  • trunk/src/org/openstreetmap/josm/io/session/SessionWriter.java

    r8625 r8836  
    5252
    5353    static {
    54         registerSessionLayerExporter(OsmDataLayer.class , OsmDataSessionExporter.class);
    55         registerSessionLayerExporter(TMSLayer.class , ImagerySessionExporter.class);
    56         registerSessionLayerExporter(WMSLayer.class , ImagerySessionExporter.class);
    57         registerSessionLayerExporter(WMTSLayer.class , ImagerySessionExporter.class);
    58         registerSessionLayerExporter(GpxLayer.class , GpxTracksSessionExporter.class);
    59         registerSessionLayerExporter(GeoImageLayer.class , GeoImageSessionExporter.class);
     54        registerSessionLayerExporter(OsmDataLayer.class, OsmDataSessionExporter.class);
     55        registerSessionLayerExporter(TMSLayer.class, ImagerySessionExporter.class);
     56        registerSessionLayerExporter(WMSLayer.class, ImagerySessionExporter.class);
     57        registerSessionLayerExporter(WMTSLayer.class, ImagerySessionExporter.class);
     58        registerSessionLayerExporter(GpxLayer.class, GpxTracksSessionExporter.class);
     59        registerSessionLayerExporter(GeoImageLayer.class, GeoImageSessionExporter.class);
    6060        registerSessionLayerExporter(MarkerLayer.class, MarkerSessionExporter.class);
    6161    }
Note: See TracChangeset for help on using the changeset viewer.