mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
18 lines
309 B
Java
18 lines
309 B
Java
// "Defer assignment to 'n' using temp variable" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(InputStream in) {
|
|
final int n;
|
|
int n1;
|
|
try {
|
|
n1 = in.read();
|
|
} catch (IOException e) {
|
|
<caret>n1 = -1;
|
|
}
|
|
n = n1;
|
|
int y = 4;
|
|
}
|
|
}
|
|
|