Commit d17eaca8 authored by Adam Blank's avatar Adam Blank
Browse files

Update LetterBag.java

parent 3199a0a5
No related merge requests found
Pipeline #7871 failed with stage
in 0 seconds
Showing with 2 additions and 0 deletions
+2 -0
...@@ -44,10 +44,12 @@ public class LetterBag { ...@@ -44,10 +44,12 @@ public class LetterBag {
return result; return result;
} }
@Override
public int hashCode() { public int hashCode() {
return this.bag.hashCode(); return this.bag.hashCode();
} }
@Override
public boolean equals(Object o) { public boolean equals(Object o) {
if (!(o instanceof LetterBag)) { if (!(o instanceof LetterBag)) {
return false; return false;
......
Markdown is supported
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