mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
[java] support comparing when method is a first operand
GitOrigin-RevId: 64895b894c8dee5c178bfb336a4f2f30872a13c4
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f77617b690
commit
4882e88dbf
@@ -0,0 +1,11 @@
|
||||
// "Create method 'test'" "true-preview"
|
||||
public class Test {
|
||||
public void testStart() {
|
||||
if (test() < 1) {
|
||||
}
|
||||
}
|
||||
|
||||
private int test() {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Create method 'test'" "true-preview"
|
||||
public class Test {
|
||||
public void testStart() {
|
||||
if (te<caret>st() < 1) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user