mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
IDEA-130782 make RemoveUnusedVariableUtil#checkSideEffects Contract(pure) aware
This commit is contained in:
+2
-1
@@ -4,7 +4,8 @@ import java.io.*;
|
||||
class a {
|
||||
int k;
|
||||
private void run() {
|
||||
<caret>while (1 > 0) ;
|
||||
k = 9;
|
||||
while (1 > 0) ;
|
||||
for (;; ) ;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user