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

[josm_plugins] fix Java 7 / unused code warnings

Location:
applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/io
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/io/PbfReader.java

    r30664 r30737  
    137137                        // Each node's tags are encoded in alternating <key_id> <value_id>.
    138138                        // A single stringid of 0 delimit when the tags of a node ends and the tags of the next node begin.
    139                         Map<String, String> keys = new HashMap<String, String>();
     139                        Map<String, String> keys = new HashMap<>();
    140140                        while (keyIndex < nodes.getKeysValsCount()) {
    141141                            int key_id = nodes.getKeysVals(keyIndex++);
     
    172172                        checkTimestamp(info.getTimestamp());
    173173                        node.setTimestamp(getDate(info));
    174                         Map<String, String> keys = new HashMap<String, String>();
     174                        Map<String, String> keys = new HashMap<>();
    175175                        for (int i=0; i<n.getKeysCount(); i++) {
    176176                            keys.put(getStringById(n.getKeys(i)), getStringById(n.getVals(i)));
     
    197197                        checkTimestamp(info.getTimestamp());
    198198                        way.setTimestamp(getDate(info));
    199                         Map<String, String> keys = new HashMap<String, String>();
     199                        Map<String, String> keys = new HashMap<>();
    200200                        for (int i=0; i<w.getKeysCount(); i++) {
    201201                            keys.put(getStringById(w.getKeys(i)), getStringById(w.getVals(i)));
     
    203203                        way.setKeys(keys);
    204204                        long previousId = 0; // Node ids are delta coded
    205                         Collection<Long> nodeIds = new ArrayList<Long>();
     205                        Collection<Long> nodeIds = new ArrayList<>();
    206206                        for (Long id : w.getRefsList()) {
    207207                            nodeIds.add(previousId+=id);
     
    228228                        checkTimestamp(info.getTimestamp());
    229229                        rel.setTimestamp(getDate(info));
    230                         Map<String, String> keys = new HashMap<String, String>();
     230                        Map<String, String> keys = new HashMap<>();
    231231                        for (int i=0; i<r.getKeysCount(); i++) {
    232232                            keys.put(getStringById(r.getKeys(i)), getStringById(r.getVals(i)));
     
    234234                        rel.setKeys(keys);
    235235                        long previousId = 0; // Member ids are delta coded
    236                         Collection<RelationMemberData> members = new ArrayList<RelationMemberData>();
     236                        Collection<RelationMemberData> members = new ArrayList<>();
    237237                        for (int i = 0; i<r.getMemidsCount(); i++) {
    238238                            long id = previousId+=r.getMemids(i);
  • applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/io/PbfWriter.java

    r30726 r30737  
    6969        private abstract class Prim<T extends OsmPrimitive> {
    7070            /** Queue that tracks the list of all primitives. */
    71             ArrayList<T> contents = new ArrayList<T>();
     71            ArrayList<T> contents = new ArrayList<>();
    7272
    7373            /**
Note: See TracChangeset for help on using the changeset viewer.