サンプル
public class
ClassA {
public void
methodA () {
List l =
new
ArrayList();
Object o =
new
Object();
for
(
int
i=0; i<10; i++) {
if
(l.contains(o)){
//...
}
}
}
解決策
ループ内での l.contains() の使用を再検討してください。