blob: f54fbaed7d03d9b8048ecacf50afb91edb87b80a [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();
} catch (IOException <caret>e) {
throw e;
}
}
}