Changeset 31993 in osm for applications/editors
- Timestamp:
- 2016-01-17T06:21:38+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreInterface.java
r31992 r31993 66 66 67 67 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-145974 }75 68 76 69 public boolean retrieveInterface(WMSLayer wmsLayer) throws DuplicateLayerException, WMSException { … … 424 417 JComboBox<String> inputCommuneList = new JComboBox<>(communeList); 425 418 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); 429 420 //pane.createDialog(Main.parent, tr("Select commune")).setVisible(true); 430 421 // this below is a temporary workaround to fix the "always on top" issue
Note:
See TracChangeset
for help on using the changeset viewer.