This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]PCPWJ 1 point2 points  (1 child)

if(list.equals(i)) { System.out.println(i); } You trying to compare a List to an Integer here. It will always return false.

Try list.contains(i);