Ignore:
Timestamp:
2014-10-18T23:07:52+02:00 (11 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/CadastreInterface.java

    r30701 r30737  
    3333    private String lastWMSLayerName = null;
    3434    private URL searchFormURL;
    35     private Vector<String> listOfCommunes = new Vector<String>();
    36     private Vector<String> listOfTA = new Vector<String>();
     35    private Vector<String> listOfCommunes = new Vector<>();
     36    private Vector<String> listOfTA = new Vector<>();
    3737    class PlanImage {
    3838        String name;
     
    4343        }
    4444    }
    45     private Vector<PlanImage> listOfFeuilles = new Vector<PlanImage>();
     45    private Vector<PlanImage> listOfFeuilles = new Vector<>();
    4646    private long cookieTimestamp;
    4747
     
    435435    private int selectFeuilleDialog() {
    436436        JPanel p = new JPanel(new GridBagLayout());
    437         Vector<String> imageNames = new Vector<String>();
     437        Vector<String> imageNames = new Vector<>();
    438438        for (PlanImage src : listOfFeuilles) {
    439439            imageNames.add(src.name);
Note: See TracChangeset for help on using the changeset viewer.