try-with-resources 블록 끝 부분의 불필요한 close() 호출을 보고하고 제거할 것을 제안합니다.

:


  try(MyAutoCloseable ac = new MyAutoCloseable()) {
    foo();
    ac.close();
  }

빠른 수정을 적용한 후:


  try(MyAutoCloseable ac = new MyAutoCloseable()) {
    foo();
  }

2018.1의 새로운 기능