Files
2022-08-19 10:55:36 +00:00

17 lines
365 B
Java

// "Remove redundant 'close()'" "true-preview"
class MyAutoCloseable implements AutoCloseable {
@Override
public void close() {
}
}
class RemoveTry {
public static void main(String[] args) {
try(MyAutoCloseable ac = new MyAutoCloseable()) {
System.out.println("Number of parameters?");
if (args.length == 0) ac.close<caret>();
}
}
}