Files
Andrey.Cherkasov 0d10ba565e [java] Fix test data files after inspection description updating
GitOrigin-RevId: faa9f564b7a37e4c1165c24f904994b951adfccd
2021-03-18 10:49:54 +00:00

18 lines
512 B
Java

// "Fix all ''Optional' can be replaced with sequence of 'if' statements' problems in file" "true"
import java.util.*;
class Test {
String exceptionIsThrownIfNull(String in) {
if (in == null || in.length() <= 2) throw new NoSuchElementException("No value present");
return in;
}
void ofNullableGetFinalVar(String in) {
if (in == null) throw new NoSuchElementException("No value present");
final String out = in;
Runnable r = () -> java.lang.System.out.println(out);
}
}