mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 11:49:20 +07:00
6e8742ed2a
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
14 lines
203 B
Java
14 lines
203 B
Java
// "Remove local variable 'i'" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
private int run() {
|
|
<caret>int j;
|
|
int k = 9;
|
|
if (3 ==0) ;
|
|
else return k;
|
|
return 0;
|
|
}
|
|
}
|
|
|