Ignore:
Timestamp:
2015-11-30T08:36:35+01:00 (8 years ago)
Author:
Don-vip
Message:

Sonar - squid:S2293 - The diamond operator ("<>") should be used

Location:
trunk/src/org/openstreetmap/josm/data
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/Preferences.java

    r9067 r9070  
    18241824                Collection<Map<String, String>> data = getListOfStructs(key, (Collection<Map<String, String>>) null);
    18251825                if (data != null) {
    1826                     List<Map<String, String>> newlist = new ArrayList<Map<String, String>>();
     1826                    List<Map<String, String>> newlist = new ArrayList<>();
    18271827                    boolean modified = false;
    18281828                    for (Map<String, String> map : data) {
    1829                          Map<String, String> newmap = new LinkedHashMap<String, String>();
     1829                         Map<String, String> newmap = new LinkedHashMap<>();
    18301830                         for (Entry<String, String> entry : map.entrySet()) {
    18311831                             String val = entry.getValue();
  • trunk/src/org/openstreetmap/josm/data/cache/CacheEntryAttributes.java

    r8624 r9070  
    2222public class CacheEntryAttributes extends ElementAttributes {
    2323    private static final long serialVersionUID = 1L; //version
    24     private final Map<String, String> attrs = new ConcurrentHashMap<String, String>(RESERVED_KEYS.size());
     24    private final Map<String, String> attrs = new ConcurrentHashMap<>(RESERVED_KEYS.size());
    2525    private static final String NO_TILE_AT_ZOOM = "noTileAtZoom";
    2626    private static final String ETAG = "Etag";
  • trunk/src/org/openstreetmap/josm/data/cache/JCSCacheManager.java

    r9064 r9070  
    169169            }
    170170        }
    171         return new CacheAccess<K, V>(cc);
     171        return new CacheAccess<>(cc);
    172172    }
    173173
  • trunk/src/org/openstreetmap/josm/data/notes/Note.java

    r7509 r9070  
    2121    private Date closedAt;
    2222    private State state;
    23     private List<NoteComment> comments = new ArrayList<NoteComment>();
     23    private List<NoteComment> comments = new ArrayList<>();
    2424
    2525    /**
  • trunk/src/org/openstreetmap/josm/data/validation/tests/DuplicateNode.java

    r9067 r9070  
    382382    public Command fixError(TestError testError) {
    383383        if (!isFixable(testError)) return null;
    384         Collection<OsmPrimitive> sel = new LinkedList<OsmPrimitive>(testError.getPrimitives());
     384        Collection<OsmPrimitive> sel = new LinkedList<>(testError.getPrimitives());
    385385        Set<Node> nodes = new LinkedHashSet<>(OsmPrimitive.getFilteredList(sel, Node.class));
    386386
  • trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java

    r8958 r9070  
    583583         */
    584584        public Set<TagCheck> getTagCheckDependencies(Collection<TagCheck> schecks) {
    585             Set<TagCheck> result = new HashSet<MapCSSTagChecker.TagCheck>();
     585            Set<TagCheck> result = new HashSet<>();
    586586            Set<String> classes = getClassesIds();
    587587            if (schecks != null && !classes.isEmpty()) {
     
    770770                final OsmPrimitive p = OsmUtils.createPrimitive(i.getKey());
    771771                // Build minimal ordered list of checks to run to test the assertion
    772                 List<Set<TagCheck>> checksToRun = new ArrayList<Set<TagCheck>>();
     772                List<Set<TagCheck>> checksToRun = new ArrayList<>();
    773773                Set<TagCheck> checkDependencies = check.getTagCheckDependencies(schecks);
    774774                if (!checkDependencies.isEmpty()) {
  • trunk/src/org/openstreetmap/josm/data/validation/tests/MultipolygonTest.java

    r8870 r9070  
    302302                }
    303303            }
    304             List<OsmPrimitive> newPrimitives = new ArrayList<OsmPrimitive>(primitives);
     304            List<OsmPrimitive> newPrimitives = new ArrayList<>(primitives);
    305305            newPrimitives.add(0, r);
    306306            error.setPrimitives(newPrimitives);
  • trunk/src/org/openstreetmap/josm/data/validation/tests/SimilarNamedWays.java

    r9067 r9070  
    4141    private MultiMap<Way, Way> errorWays;
    4242
    43     private final List<NormalizeRule> rules = new ArrayList<NormalizeRule>();
     43    private final List<NormalizeRule> rules = new ArrayList<>();
    4444
    4545    /**
Note: See TracChangeset for help on using the changeset viewer.