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

fix warnings

Location:
applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/ImportImagePlugin.java

    r33372 r33563  
    1717import org.openstreetmap.josm.actions.ExtensionFileFilter;
    1818import org.openstreetmap.josm.actions.JosmAction;
     19import org.openstreetmap.josm.gui.MainApplication;
    1920import org.openstreetmap.josm.gui.MainMenu;
    2021import org.openstreetmap.josm.plugins.Plugin;
     
    8485            loadFileAction.setEnabled(true);
    8586            if (Main.main != null) {
    86                 MainMenu.add(Main.main.menu.imagerySubMenu, loadFileAction);
     87                MainMenu.add(MainApplication.getMenu().imagerySubMenu, loadFileAction);
    8788            }
    8889
  • applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/LayerPropertiesDialog.java

    r33028 r33563  
    3434import org.opengis.referencing.crs.CoordinateReferenceSystem;
    3535import org.openstreetmap.josm.Main;
     36import org.openstreetmap.josm.tools.Logging;
    3637
    3738/**
     
    234235                crsDescription = imageLayer.getBbox().getCoordinateReferenceSystem().getIdentifiers().iterator().next().toString();
    235236            } catch (Exception e) {
    236                 Main.debug(e);
     237                Logging.debug(e);
    237238            }
    238239            crsValueLabel.setText(crsDescription + "(" + imageLayer.getBbox().getCoordinateReferenceSystem().getName().toString() + ")");
     
    297298                crsDescription = imageLayer.getSourceRefSys().getIdentifiers().iterator().next().toString();
    298299            } catch (Exception e) {
    299                 Main.debug(e);
     300                Logging.debug(e);
    300301            }
    301302            currentCRSValueLabel.setText(crsDescription);
     
    539540
    540541                                } catch (IOException | FactoryException e2) {
    541                                     Main.error(e2);
     542                                    Logging.error(e2);
    542543                                }
    543544                            } else {
  • applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/LoadImageAction.java

    r33028 r33563  
    1414import org.openstreetmap.josm.actions.JosmAction;
    1515import org.openstreetmap.josm.data.osm.visitor.BoundingXYVisitor;
     16import org.openstreetmap.josm.gui.MainApplication;
    1617import org.openstreetmap.josm.plugins.ImportImagePlugin.ImageLayer.LayerCreationCanceledException;
    1718
     
    5758
    5859            // Add layer:
    59             Main.getLayerManager().addLayer(layer);
     60            MainApplication.getLayerManager().addLayer(layer);
    6061            BoundingXYVisitor boundingXYVisitor = new BoundingXYVisitor();
    6162            layer.visitBoundingBox(boundingXYVisitor);
    62             Main.map.mapView.zoomTo(boundingXYVisitor);
     63            MainApplication.getMap().mapView.zoomTo(boundingXYVisitor);
    6364        }
    6465    }
Note: See TracChangeset for help on using the changeset viewer.