/**
* Write a mehod that removes the movie with a given title
*/
public void removeMovie(String title)
{
for (Movie movie : movies){
if(movie.getTitle().equals(title)){
movies.remove(movie);
}
}
}
There is another class called Movie if anyone needs me to post it. This throws an exception though. Why?