Files
sbt/internal/util-interface/src/main/java/xsbti/T2.java
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
305 B
Java
Raw Normal View History

2019-12-07 17:14:42 -08:00
/*
* sbt
2023-06-20 13:42:07 +02:00
* Copyright 2023, Scala center
* Copyright 2011 - 2022, Lightbend, Inc.
2019-12-07 17:14:42 -08:00
* Copyright 2008 - 2010, Mark Harrah
* Licensed under Apache License 2.0 (see LICENSE)
*/
2015-12-16 15:46:40 -05:00
package xsbti;
/** Used to pass a pair of values. */
2020-01-14 14:19:42 -08:00
public interface T2<A1, A2> {
2015-12-16 15:54:23 -05:00
public A1 get1();
2020-01-14 14:19:42 -08:00
2015-12-16 15:54:23 -05:00
public A2 get2();
}