Ignore:
Timestamp:
2014-07-14T04:18:06+02:00 (11 years ago)
Author:
donvip
Message:

[josm_plugins] fix compilation warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/DirectDownload/src/org/openstreetmap/josm/plugins/directdownload/DownloadDataGui.java

    r29776 r30532  
    128128            return handler.getResult();
    129129        } catch (java.net.MalformedURLException e) {
     130            Main.error(e);
    130131            JOptionPane.showMessageDialog(null, tr("Invalid URL {0}", urlString));
    131132        } catch (java.io.IOException e) {
     133            Main.error(e);
    132134            JOptionPane.showMessageDialog(null, tr("Error fetching URL {0}", urlString));
    133135        } catch (SAXException e) {
     136            Main.error(e);
    134137            JOptionPane.showMessageDialog(null, tr("Error parsing data from URL {0}", urlString));
    135         } catch(ParserConfigurationException pce) {
     138        } catch (ParserConfigurationException e) {
     139            Main.error(e);
    136140            JOptionPane.showMessageDialog(null, tr("Error parsing data from URL {0}", urlString));
    137141        }
Note: See TracChangeset for help on using the changeset viewer.