Ignore:
Timestamp:
2016-07-04T14:18:17+02:00 (10 years ago)
Author:
donvip
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionGrabPlanImage.java

    r32329 r32556  
    1 // License: GPL. v2 and later. Copyright 2008-2009 by Pieren <pieren3@gmail.com> and others
     1// License: GPL. For details, see LICENSE file.
    22package cadastre_fr;
    33
     
    2525    private WMSLayer wmsLayer;
    2626    private RasterImageGeoreferencer rasterImageGeoreferencer;
    27    
     27
    2828    public MenuActionGrabPlanImage() {
    2929        super(tr(name), "cadastre_small", tr("Grab non-georeferenced image"), null, false, "cadastrefr/grabplanimage", true);
     
    3636        if (!rasterImageGeoreferencer.isRunning()) return;
    3737        if (Main.getLayerManager().containsLayer(wmsLayer))
    38                 return;
     38            return;
    3939        JOptionPane.showMessageDialog(Main.parent, tr("Georeferencing interrupted"));
    4040        rasterImageGeoreferencer.actionInterrupted();
     
    4242
    4343    @Override
    44         public void actionPerformed(ActionEvent ae) {
     44    public void actionPerformed(ActionEvent ae) {
    4545        if (Main.map != null) {
    4646            if (CadastrePlugin.isCadastreProjection()) {
     
    5858
    5959    @Override
    60         public void run() {
     60    public void run() {
    6161        // wait until plan image is fully loaded and joined into one single image
    6262        boolean loadedFromCache = downloadWMSPlanImage.waitFinished();
Note: See TracChangeset for help on using the changeset viewer.