mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Java: Don't create parameters for effectively local variables in extracted fragment (IDEA-180864)
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
public class EffectivelyLocalWithinExpression {
|
||||
void foo() {
|
||||
int n;
|
||||
if (<selection>(n = z()) > 0 && n < 100</selection>) {
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
|
||||
void bar() {
|
||||
int n;
|
||||
if ((n = z()) > 1 && n < 100) {
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
|
||||
int z() {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user