Apply and enforce spring-javaformat

This commit is contained in:
Simon DeMartini
2022-03-18 21:19:05 -07:00
committed by Dave Syer
parent ad60397400
commit 7254dc8be7
44 changed files with 1060 additions and 825 deletions

View File

@@ -44,11 +44,16 @@ public class NativeGuiceTests {
}
public static class TestConfig extends AbstractModule {
@Override
protected void configure() {
bind(Foo.class).annotatedWith(Names.named("bar")).to(Foo.class);
}
}
public static class Foo {
}
public static class Foo {}
}