Ignore:
Timestamp:
2011-09-08T00:08:02+02:00 (13 years ago)
Author:
simon04
Message:

fix #6773 - shortcuts for History and Advanced info dialog

File:
1 edited

Legend:

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

    r4403 r4408  
    5858        return null;
    5959    }
     60
     61        public static <T> Collection<T> filter(Collection<? extends T> collection, Predicate<? super T> predicate) {
     62                return new FilteredCollection<T>(collection, predicate);
     63        }
    6064   
    6165    /**
Note: See TracChangeset for help on using the changeset viewer.