この検査は、実際の引数の型がコレクションの要素の型と対応していない、パラメータ化されたコレクションへのメソッド呼び出しを報告します。

例えば、以下のコードの場合 :
For example if you have the following code:
    List<Integer> list = getListOfElements();
    list.remove("");
- the call to remove() への呼び出しが強調表示されます。

The option 'Report suspicious but possibly correct method calls' makes it possible to ignore potentially correct code, like this:

    Number number = new Integer(0);
    list.remove(number));