new 配列式を持たない配列イニシャライザーの報告と、追加の提案を行います。

例:


  int[] a = {42}

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


  int[] a = new int[]{42}