Ignore:
Timestamp:
2014-06-30T01:06:11+02:00 (11 years ago)
Author:
Don-vip
Message:

fix #9518 - Automatically reload MapCSS tagchecker validator rules (configurable with validator.auto_reload_local_rules property), improve javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/MultiMap.java

    r7275 r7276  
    213213
    214214    @Override
     215    public int hashCode() {
     216        return map.hashCode();
     217    }
     218
     219    @Override
     220    public boolean equals(Object obj) {
     221        if (this == obj)
     222            return true;
     223        if (obj == null)
     224            return false;
     225        if (!(obj instanceof MultiMap))
     226            return false;
     227        return map.equals(((MultiMap<?,?>) obj).map);
     228    }
     229
     230    @Override
    215231    public String toString() {
    216232        List<String> entries = new ArrayList<>(map.size());
Note: See TracChangeset for help on using the changeset viewer.