Ignore:
Timestamp:
2014-10-18T23:07:52+02:00 (10 years ago)
Author:
donvip
Message:

[josm_plugins] fix Java 7 / unused code warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ext_tools/src/ext_tools/ExtTool.java

    r30685 r30737  
    162162        Main.map.mapView.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    163163        // parse cmdline and build cmdParams array
    164         HashMap<String, String> replace = new HashMap<String, String>();
     164        HashMap<String, String> replace = new HashMap<>();
    165165
    166166        replace.put("{lat}", "" + pos.lat());
     
    169169        replace.put("{TZoom}", "" + getTMSZoom());
    170170
    171         ArrayList<String> cmdParams = new ArrayList<String>();
     171        ArrayList<String> cmdParams = new ArrayList<>();
    172172        StringTokenizer st = new StringTokenizer(cmdline);
    173173
Note: See TracChangeset for help on using the changeset viewer.