blob: 2500538882943053d0b739dd484ebfcd8a56f3e8 [file] [log] [blame]
package com.siyeh.igfixes.tryCatch;
import java.io.FileInputStream;
import java.io.IOException;
class DeleteTryWithResources {
void foo() throws IOException {
try (FileInputStream in = new FileInputStream("")) {
in.read();
}
}
}