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

[josm_plugins] fix various compilation warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/modules/fr.paris/src/org/openstreetmap/josm/plugins/opendata/modules/fr/paris/datasets/urbanisme/SanisettesHandler.java

    r30340 r30701  
    5050        public void updateDataSet(DataSet ds) {
    5151               
    52                 List<Way> sourceWays = new ArrayList<Way>(ds.getWays());
    53                 List<List<Way>> waysToCombine = new ArrayList<List<Way>>();
     52                List<Way> sourceWays = new ArrayList<>(ds.getWays());
     53                List<List<Way>> waysToCombine = new ArrayList<>();
    5454               
    5555                for (Iterator<Way> it = sourceWays.iterator(); it.hasNext();) {
     
    5757                        it.remove();
    5858                        if (!wayProcessed(w, waysToCombine)) {
    59                                 List<Way> list = new ArrayList<Way>();
     59                                List<Way> list = new ArrayList<>();
    6060                                list.add(w);
    6161                                boolean finished = false;
    62                                 List<Way> sourceWays2 = new ArrayList<Way>(sourceWays);
     62                                List<Way> sourceWays2 = new ArrayList<>(sourceWays);
    6363                                while (!finished) {
    6464                                        int before = list.size();
Note: See TracChangeset for help on using the changeset viewer.