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/cadastre-fr/src/cadastre_fr/GrabThread.java

    r26524 r30737  
    2525    private Lock lockImagesToGrag = new ReentrantLock();
    2626
    27     private ArrayList<EastNorthBound> imagesToGrab = new ArrayList<EastNorthBound>();
     27    private ArrayList<EastNorthBound> imagesToGrab = new ArrayList<>();
    2828
    2929    private CacheControl cacheControl = null;
     
    5858   
    5959    public ArrayList<EastNorthBound> getImagesToGrabCopy() {
    60         ArrayList<EastNorthBound> copyList = new ArrayList<EastNorthBound>();
     60        ArrayList<EastNorthBound> copyList = new ArrayList<>();
    6161        lockImagesToGrag.lock();
    6262        for (EastNorthBound img : imagesToGrab) {
Note: See TracChangeset for help on using the changeset viewer.