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
@@ -10,9 +10,13 @@ package xsbti;
import java.util.function.Supplier;
public interface Logger {
void error(Supplier<String> msg);
void warn(Supplier<String> msg);
void info(Supplier<String> msg);
void debug(Supplier<String> msg);
void trace(Supplier<Throwable> exception);
void error(Supplier<String> msg);
void warn(Supplier<String> msg);
void info(Supplier<String> msg);
void debug(Supplier<String> msg);
void trace(Supplier<Throwable> exception);
}