Files
openide/java/java-tests/testData/inspection/reflectionAccess/beforeMethod.java
T

6 lines
155 B
Java

// "Use 'getDeclaredMethod()'" "true"
class X {
void test() {
String.class.getMethod("checkBounds<caret>", byte[].class, int.class, int.class);
}
}