This is a code snippet to move to next element in the linked list. On debugging, itrPlaylist.next() is triggering a ConcurrentModificationException. I read that the list should not be modified while I am iterating. So, in this case, where did I go wrong? How can it be resolved?
Thanks in Advance.
public boolean nexxt() {
    if(this.itrPlaylist.hasNext())
    {
        if(!bForward)
        {
            bForward = true;
            itrPlaylist.next();
        }
        System.out.println("Now playing : " + itrPlaylist.next());
        return true;    
    }
    else
    {
        System.out.println("Reached end of " + this.getPlaylistName() + " playlist !");
    }
    return false;
}
 
     
    