Skip to content
Snippets Groups Projects
Commit d09c3606 authored by Patrick Wendell's avatar Patrick Wendell
Browse files

Using tuple swap()

parent 04786d07
No related branches found
No related tags found
No related merge requests found
......@@ -528,7 +528,7 @@ public class JavaAPISuite implements Serializable {
new PairFunction<Tuple2<String, Integer>, Integer, String>() {
@Override
public Tuple2<Integer, String> call(Tuple2<String, Integer> in) throws Exception {
return new Tuple2(in._2(), in._1());
return in.swap();
}
});
......@@ -563,7 +563,7 @@ public class JavaAPISuite implements Serializable {
LinkedList<Tuple2<Integer, String>> out = new LinkedList<Tuple2<Integer, String>>();
while (in.hasNext()) {
Tuple2<String, Integer> next = in.next();
out.add(new Tuple2<Integer, String>(next._2(), next._1()));
out.add(next.swap());
}
return out;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment