mirror of https://github.com/sbt/sbt.git
Adds xsbti.T2.
This commit is contained in:
parent
994634fc2c
commit
200b351552
|
|
@ -0,0 +1,12 @@
|
|||
package xsbti;
|
||||
|
||||
/** Used to pass a pair of values. */
|
||||
public class T2<A1, A2> {
|
||||
public final A1 _1;
|
||||
public final A2 _2;
|
||||
|
||||
public T2(A1 a1, A2 a2) {
|
||||
this._1 = a1;
|
||||
this._2 = a2;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue