Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantFileCreation/beforeTakeStringFromMethod.java
Andrey.Cherkasov 080b533383 Fixes after code review: IDEA-249165
GitOrigin-RevId: db35ebb920618b5e2105715406c1e24eb50bb71a
2020-09-08 07:31:16 +00:00

20 lines
630 B
Java

// "Fix all 'Redundant File object creation' problems in file" "true"
import java.io.*;
import java.util.Formatter;
class Main {
private static String getSomePathname() {
return "Some pathname";
}
public void main(String[] args) throws IOException {
new FileInputStream(new Fi<caret>le(getSomePathname()));
new FileOutputStream(new File(getSomePathname()));
new FileReader(new File(getSomePathname()));
new FileWriter(new File(getSomePathname()));
new PrintStream(new File(getSomePathname()));
new PrintWriter(new File(getSomePathname()));
new Formatter(new File(getSomePathname()));
}
}