Ignore:
Timestamp:
2014-10-04T17:28:45+02:00 (12 years ago)
Author:
donvip
Message:

[josm_plugins] fix various compilation warnings

File:
1 edited

Legend:

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

    r30532 r30701  
    227227            while ((ln = in.readLine()) != null) {
    228228                lines += ln;
     229            }
     230            if (Main.isDebugEnabled()) {
     231                Main.debug(lines);
    229232            }
    230233        } catch (MalformedURLException e) {
     
    544547    }
    545548
    546     private double tryParseDouble(String str) {
    547         try {
    548             return Double.parseDouble(str);
    549         } catch (NumberFormatException e) {
    550             return 0;
    551         }
    552     }
    553 
    554549    private void checkLayerDuplicates(WMSLayer wmsLayer) throws DuplicateLayerException {
    555550        if (Main.map != null) {
Note: See TracChangeset for help on using the changeset viewer.