Browse Source

Re-add nicknames to hashcode.

pull/137/head
Greg Holmes 9 years ago
parent
commit
10789b97b7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/config/profiles/Profile.java

+ 1
- 1
src/com/dmdirc/config/profiles/Profile.java View File

96
 
96
 
97
     @Override
97
     @Override
98
     public int hashCode() {
98
     public int hashCode() {
99
-        return Objects.hash(name, realname, ident);
99
+        return Objects.hash(name, realname, ident, nicknames);
100
     }
100
     }
101
 }
101
 }

Loading…
Cancel
Save