The quick-fix replaces the constructor call with a String
literal that represents the path, for example:
InputStream is = new FileInputStream(new File("in.txt")); // before
InputStream is = new FileInputStream("in.txt"); // after
New in 2020.3