Apply javafmt in sbt project

This commit is contained in:
Ethan Atkins
2020-01-14 14:38:08 -08:00
parent 813864ec0f
commit cf745255e8
18 changed files with 884 additions and 633 deletions
@@ -8,8 +8,8 @@
package xsbti;
/** Used to pass a pair of values. */
public interface T2<A1, A2>
{
public interface T2<A1, A2> {
public A1 get1();
public A2 get2();
}