Skip to content
Snippets Groups Projects
Commit 685695a6 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Remove unnecessary parenthesis

parent c30b2ec9
Branches
Tags
1 merge request!48Code cleanup
Pipeline #7923 passed with stages
in 2 minutes and 43 seconds
...@@ -142,6 +142,6 @@ public class Motd { ...@@ -142,6 +142,6 @@ public class Motd {
return false; return false;
} }
Motd other = (Motd) obj; Motd other = (Motd) obj;
return (this.getMotdkey().equals(other.getMotdkey())); return this.getMotdkey().equals(other.getMotdkey());
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment