Search:

Type: Posts; User: curmudgeon

Search: Search took 0.10 seconds.

  1. Re: Need some help with removing and finding items from an ArrayList

    As painful as it might seem, this learning experience will pay you dividends in the future when you again need to flex your debugging muscles again. Glad you've got things working. And nice going!
  2. Re: Need some help with removing and finding items from an ArrayList

    I think that you will want to re-write your Employee equals method. Per your current method, it will always return false:



    public boolean equals (Object obj){
    return false;
    }...
Results 1 to 2 of 2