mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
IDEA-93289 (count usages; simple case)
This commit is contained in:
@@ -5,6 +5,11 @@ import java.io.IOException;
|
||||
class C {
|
||||
void m(File file) throws IOException {
|
||||
<caret>FileInputStream fileInputStream = new FileInputStream(file);
|
||||
int read = fileInputStream.read();
|
||||
int read;
|
||||
do {
|
||||
read = fileInputStream.read();
|
||||
System.out.println(read);
|
||||
}
|
||||
while (read != -1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user