diff --git a/assignments/assignment2a/src/main/java/org/magnum/mobilecloud/video/model/Video.java b/assignments/assignment2a/src/main/java/org/magnum/mobilecloud/video/model/Video.java index 206190c..c5ccdb6 100644 --- a/assignments/assignment2a/src/main/java/org/magnum/mobilecloud/video/model/Video.java +++ b/assignments/assignment2a/src/main/java/org/magnum/mobilecloud/video/model/Video.java @@ -133,7 +133,6 @@ public boolean equals(Object obj) { Video other = (Video) obj; // Google Guava provides great utilities for equals too! return Objects.equal(title, other.title) - && Objects.equal(url, other.url) && Objects.equal(owner, other.owner) && duration == other.duration; } else {