mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
20 lines
320 B
Java
20 lines
320 B
Java
// "Defer assignment to 'n' using temp variable" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(InputStream in) {
|
|
final int n;
|
|
int n1;
|
|
if (in==null) {
|
|
n1 = 2;
|
|
<caret>n1 = 2;
|
|
}
|
|
else {
|
|
n1 =4;
|
|
}
|
|
n = n1;
|
|
int p = 6;
|
|
}
|
|
}
|
|
|