From e91a803dcbc9b41e68172114ef984d52f3dd4614 Mon Sep 17 00:00:00 2001 From: Andrey Sinyagin Date: Wed, 19 Aug 2015 17:49:31 +0300 Subject: [PATCH] Bug fixing --- .../src/main/java/org/magnum/mobilecloud/video/model/Video.java | 1 - 1 file changed, 1 deletion(-) 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 {