Changeset 10289 in josm
- Timestamp:
- 2016-05-28T11:38:22+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r10287 r10289 135 135 */ 136 136 public static <T> boolean exists(Iterable<T> collection, Class<? extends T> clazz) { 137 return exists(collection, Predicates. isInstanceOf(clazz));137 return exists(collection, Predicates.<T>isInstanceOf(clazz)); 138 138 } 139 139
Note:
See TracChangeset
for help on using the changeset viewer.