check instanceof Movie

This commit is contained in:
Ulisses Lima 2023-06-07 12:20:25 -03:00
parent b0e5cff217
commit 80e0f8b2e6

View File

@ -12,6 +12,10 @@ public boolean equals(Object other) {
if (other == null) {
return false;
}
if (!(other instanceof Movie)) {
return false;
}
Movie movie = (Movie) other;
if (movie.name.equals(this.name) && movie.yearOfRelease.equals(this.yearOfRelease)) {
return true;