Replace val with native final var in Java >= 10

This commit is contained in:
Rawi01
2021-02-02 09:44:36 +01:00
committed by Roel Spilker
parent e050dafc90
commit fdcbaa033d
36 changed files with 128 additions and 16 deletions
@@ -0,0 +1,19 @@
// version 10:
import java.io.IOException;
import java.util.Arrays;
import lombok.val;
public class ValToNative {
private void test() throws IOException {
val intField = 1;
for (val s : Arrays.asList("1")) {
val s2 = s;
}
try (val in = getClass().getResourceAsStream("ValToNative.class")) {
val j = in.read();
}
}
}