try-with-resources ブロックの末尾にある不要な close() の呼び出しを報告し、その除去を提案します。

:


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

クイックフィックス適用後:


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

2018.1 の新機能です