Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/beforeInCondition.java
T
2020-07-10 09:53:37 +00:00

9 lines
174 B
Java

// "Create method 'test'" "true"
public class Test {
void test(boolean b, Object obj) {
if (b || te<caret>st() == obj) {
// do smth
}
}
}