mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
more java tests moved to community
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
class Tuple<X,Y> {
|
||||
public final X x;
|
||||
public final Y y;
|
||||
public Tuple(X x,Y y) {this.x=x; this.y=y;}
|
||||
|
||||
public X getX() {
|
||||
return <caret>x;
|
||||
}
|
||||
|
||||
private static <X,Y> Tuple<X,Y> copy(Tuple<X,Y> t) {
|
||||
return new Tuple<X,Y>(t.x, t.y);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user