Ignore:
Timestamp:
2016-02-09T23:50:50+01:00 (10 years ago)
Author:
donvip
Message:

remove tabs

File:
1 edited

Legend:

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

    r31665 r32060  
    232232            menuSource.addActionListener(new ActionListener() {
    233233                @Override
    234                                 public void actionPerformed(ActionEvent ev) {
     234                public void actionPerformed(ActionEvent ev) {
    235235                    Main.pref.put("cadastrewms.autosourcing", menuSource.isSelected());
    236236                    autoSourcing = menuSource.isSelected();
     
    367367
    368368    @Override
    369         public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
     369    public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
    370370        if (cadastreJMenu != null) {
    371371            if (oldFrame == null && newFrame != null) {
     
    439439                dialog.setAlwaysOnTop(true);
    440440            } catch(SecurityException e) {
    441                 Main.warn(tr("Warning: failed to put option pane dialog always on top. Exception was: {0}", e.toString()));
     441                Main.warn(tr("Warning: failed to put option pane dialog always on top. Exception was: {0}", e.toString()));
    442442            }
    443443        }
     
    478478        } catch (NumberFormatException e) {}
    479479        if (srcYear.equals("AAAA") || (year != null && year < currentYear)) {
    480                 Main.info("Replace source year "+srcYear+" by current year "+currentYear);
     480            Main.info("Replace source year "+srcYear+" by current year "+currentYear);
    481481            src = src.substring(0, src.lastIndexOf(" ")+1)+currentYear;
    482482            Main.pref.put("cadastrewms.source", src);
Note: See TracChangeset for help on using the changeset viewer.