Changeset 31993 in osm for applications/editors/josm


Ignore:
Timestamp:
2016-01-17T06:21:38+01:00 (9 years ago)
Author:
donvip
Message:

[josm_cadastre_fr] correct fix for https://jira.sonarsource.com/browse/SONARJAVA-1459

File:
1 edited

Legend:

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

    r31992 r31993  
    6666
    6767    final  int cRetriesGetCookie = 10; // 10 times every 3 seconds means 30 seconds trying to get a cookie
    68 
    69     /**
    70      * Constructs a new {@code CadastreInterface}.
    71      */
    72     public CadastreInterface() {
    73         // Constructor is needed to avoid https://jira.sonarsource.com/browse/SONARJAVA-1459
    74     }
    7568
    7669    public boolean retrieveInterface(WMSLayer wmsLayer) throws DuplicateLayerException, WMSException {
     
    424417        JComboBox<String> inputCommuneList = new JComboBox<>(communeList);
    425418        p.add(inputCommuneList, GBC.eol().fill(GBC.HORIZONTAL).insets(10, 0, 0, 0));
    426         JOptionPane pane = new JOptionPane(p, JOptionPane.INFORMATION_MESSAGE, JOptionPane.OK_CANCEL_OPTION, null) {
    427             private static final long serialVersionUID = 1L;
    428         };
     419        JOptionPane pane = new JOptionPane(p, JOptionPane.INFORMATION_MESSAGE, JOptionPane.OK_CANCEL_OPTION, null);
    429420        //pane.createDialog(Main.parent, tr("Select commune")).setVisible(true);
    430421        // this below is a temporary workaround to fix the "always on top" issue
Note: See TracChangeset for help on using the changeset viewer.