new versions for docker

This commit is contained in:
Roel Spilker
2020-01-08 01:32:24 +01:00
parent 2095244667
commit a4345d1145
45 changed files with 354 additions and 68 deletions
@@ -0,0 +1,12 @@
@lombok.Data
public class HelloWorld {
private final int answer;
public static void main(String... args) {
System.out.println(new HelloWorld(42).getAnswer());
}
@FunctionalInterface interface Foo {
String name();
}
}
@@ -0,0 +1,6 @@
public class SneakyThrowsExample {
@lombok.SneakyThrows
public static void main(String... args) {
throw new java.io.IOException("boo");
}
}