Reports redundant file creation when the stream constructor that takes a path could be used.

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