Complete code + Bonus #1

Merged
peyman merged 5 commits from develop into main 2026-05-07 19:15:02 +00:00
Showing only changes of commit 737a521018 - Show all commits
+5
View File
@@ -81,4 +81,9 @@ public class Movie {
public void setCountry(String country) { public void setCountry(String country) {
this.country = country; this.country = country;
} }
@Override
public String toString() {
return id + ". " + title;
}
} }