プリミティブ型から
String
に変換する際に不要な一時オブジェクトの作成が行われていることを報告します。
例:
String foo = new Integer(3).toString();
クイックフィックス適用後:
String foo = Integer.toString(3);