Search:

Type: Posts; User: dlorde

Search: Search took 0.10 seconds.

  1. Replies
    19
    Views
    2,221

    Re: How would i remove overlapping lists

    Yes, like Norm says, if they are Strings, it should have worked from the start...

    The point about these methods is that they need a way to decide if the two objects are the same or not. To do...
  2. Replies
    19
    Views
    2,221

    Re: How would i remove overlapping lists

    If you mean you want to remove messages from one list that are duplicated in the other, you can call removeAll(..) on one list, passing the other as the argument: list1.removeAll(list2); This will...
Results 1 to 2 of 2