From 685695a6019dd636d4eb258fba9facf1edf58a29 Mon Sep 17 00:00:00 2001 From: Daniel Gerhardt <code@dgerhardt.net> Date: Tue, 28 Mar 2017 13:31:00 +0200 Subject: [PATCH] Remove unnecessary parenthesis --- src/main/java/de/thm/arsnova/entities/Motd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/thm/arsnova/entities/Motd.java b/src/main/java/de/thm/arsnova/entities/Motd.java index 9a716f8f3..0e702ca7d 100644 --- a/src/main/java/de/thm/arsnova/entities/Motd.java +++ b/src/main/java/de/thm/arsnova/entities/Motd.java @@ -142,6 +142,6 @@ public class Motd { return false; } Motd other = (Motd) obj; - return (this.getMotdkey().equals(other.getMotdkey())); + return this.getMotdkey().equals(other.getMotdkey()); } } -- GitLab