Files
kotlin-fork/j2k/testData/fileOrElement/postProcessing/GuardClause.java
T
Toshiaki Kameyama 90b0ea73dc Add inspection for check/require/checkNotNull/requireNotNull
#KT-30640 Fixed
#KT-22412 Fixed
2019-07-08 16:36:18 +03:00

7 lines
160 B
Java
Vendored

public class Test {
void test(String s) {
if (s == null) {
throw new IllegalArgumentException("s should not be null");
}
}
}