Changeset 30737 in osm for applications/editors/josm/plugins/imagerycache/src/org/mapdb/Fun.java
- Timestamp:
- 2014-10-18T23:07:52+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagerycache/src/org/mapdb/Fun.java
r29363 r30737 43 43 44 44 public static <A,B> Tuple2<A,B> t2(A a, B b) { 45 return new Tuple2< A, B>(a,b);45 return new Tuple2<>(a,b); 46 46 } 47 47 48 48 public static <A,B,C> Tuple3<A,B,C> t3(A a, B b, C c) { 49 return new Tuple3< A, B, C>((A)a, (B)b, (C)c);49 return new Tuple3<>((A)a, (B)b, (C)c); 50 50 } 51 51 52 52 public static <A,B,C,D> Tuple4<A,B,C,D> t4(A a, B b, C c, D d) { 53 return new Tuple4< A, B, C, D>(a,b,c,d);53 return new Tuple4<>(a,b,c,d); 54 54 } 55 55
Note:
See TracChangeset
for help on using the changeset viewer.
