Changeset 585 in josm for trunk/src


Ignore:
Timestamp:
2008-03-17T22:02:16+01:00 (17 years ago)
Author:
framm
Message:
  • Remove another compiler warning, patch by Karl Newman
File:
1 edited

Legend:

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

    r429 r585  
    2020        @Override public boolean equals(Object o) {
    2121                return o == null ? o == null : o instanceof Pair
    22                         && a.equals(((Pair) o).a) && b.equals(((Pair) o).b);
     22                        && a.equals(((Pair<?,?>) o).a) && b.equals(((Pair<?,?>) o).b);
    2323        }
    2424
Note: See TracChangeset for help on using the changeset viewer.