Skip to content
Snippets Groups Projects
Commit 1757e5e7 authored by Sebastian Ebert's avatar Sebastian Ebert
Browse files

added default ctor for tuples

parent e8b57ea8
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,9 @@ public class Tuple2<K, V> { ...@@ -8,6 +8,9 @@ public class Tuple2<K, V> {
this._2 = _2; this._2 = _2;
} }
public Tuple2(){
}
public K get_1() { public K get_1() {
return _1; return _1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment