Ignore:
Timestamp:
2017-08-27T19:16:30+02:00 (7 years ago)
Author:
donvip
Message:

fix warnings

Location:
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/ImageryXmlBoundsPlugin.java

    r33493 r33560  
    22package org.openstreetmap.josm.plugins.imageryxmlbounds;
    33
    4 import org.openstreetmap.josm.Main;
    54import org.openstreetmap.josm.actions.ExtensionFileFilter;
    65import org.openstreetmap.josm.data.osm.DataSet;
     6import org.openstreetmap.josm.gui.MainApplication;
    77import org.openstreetmap.josm.gui.MapFrame;
    88import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
     
    6060        ShowBoundsSelectionAction selectionAction = new ShowBoundsSelectionAction();
    6161        DataSet.addSelectionListener(selectionAction);
    62         Main.toolbar.register(selectionAction);
     62        MainApplication.getToolbar().register(selectionAction);
    6363        // Allow JOSM to download *.imagery.xml files
    64         Main.main.menu.openLocation.addDownloadTaskClass(DownloadXmlBoundsTask.class);
     64        MainApplication.getMenu().openLocation.addDownloadTaskClass(DownloadXmlBoundsTask.class);
    6565    }
    6666
  • applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/io/XmlBoundsImporter.java

    r33557 r33560  
    1313import org.openstreetmap.josm.data.imagery.ImageryInfo;
    1414import org.openstreetmap.josm.data.osm.DataSet;
     15import org.openstreetmap.josm.gui.MainApplication;
    1516import org.openstreetmap.josm.gui.io.importexport.FileImporter;
    1617import org.openstreetmap.josm.gui.progress.ProgressMonitor;
     
    2122import org.openstreetmap.josm.plugins.imageryxmlbounds.XmlBoundsLayer;
    2223import org.openstreetmap.josm.plugins.imageryxmlbounds.data.XmlBoundsConverter;
     24import org.openstreetmap.josm.tools.Logging;
    2325import org.xml.sax.SAXException;
    2426
     
    6365            entries = reader.parse();
    6466        } catch (SAXException e) {
    65                 if (Main.isTraceEnabled()) {
    66                         Main.trace(e);
    67                 }
     67            Logging.trace(e);
    6868            if (JOptionPane.showConfirmDialog(
    6969                    Main.parent,
     
    9494                                        tr("Open Imagery XML file"), JOptionPane.INFORMATION_MESSAGE);
    9595                            }
    96                             Main.getLayerManager().addLayer(layer);
     96                            MainApplication.getLayerManager().addLayer(layer);
    9797                            layer.onPostLoadFromFile();
    9898                        });
    9999        } catch (SAXException e) {
    100             Main.error(e);
     100            Logging.error(e);
    101101        }
    102102    }
Note: See TracChangeset for help on using the changeset viewer.