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/DownloadWMSPlanImage.java

    r32060 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
     
    2424
    2525    private class Task extends PleaseWaitRunnable {
    26         public Task(WMSLayer wmsLayer, Bounds bounds) {
     26        Task(WMSLayer wmsLayer, Bounds bounds) {
    2727            super(tr("Downloading {0}", wmsLayer.getName()));
    2828        }
     
    3535                if (wmsLayer.grabber.getWmsInterface().retrieveInterface(wmsLayer)) {
    3636                    if (!wmsLayer.getImages().isEmpty()) {
    37                         //JOptionPane.showMessageDialog(Main.parent,tr("Image already loaded"));
    38                         JOptionPane pane = new JOptionPane(
    39                                 tr("Image already loaded")
    40                                 , JOptionPane.INFORMATION_MESSAGE);
     37                        JOptionPane pane = new JOptionPane(tr("Image already loaded"), JOptionPane.INFORMATION_MESSAGE);
    4138                        // this below is a temporary workaround to fix the "always on top" issue
    4239                        JDialog dialog = pane.createDialog(Main.parent, "");
     
    4542                        // till here
    4643                        dontGeoreference = true;
    47                     } else if (wmsLayer.grabber.getWmsInterface().downloadCanceled){
     44                    } else if (wmsLayer.grabber.getWmsInterface().downloadCanceled) {
    4845                        // do nothing
    4946                    } else {
     
    7370                                    "Use the normal Cadastre Grab menu."));*/
    7471                            JOptionPane pane = new JOptionPane(
    75                                     tr("Municipality vectorized !\nUse the normal Cadastre Grab menu.")
    76                                     , JOptionPane.INFORMATION_MESSAGE);
     72                                    tr("Municipality vectorized !\nUse the normal Cadastre Grab menu."),
     73                                    JOptionPane.INFORMATION_MESSAGE);
    7774                            // this below is a temporary workaround to fix the "always on top" issue
    7875                            JDialog dialog = pane.createDialog(Main.parent, "");
Note: See TracChangeset for help on using the changeset viewer.