Override hashCode()
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 20 Jul 2015 04:53:51 +0000 (06:53 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 20 Jul 2015 04:53:51 +0000 (06:53 +0200)
src/main/java/net/pterodactylus/sone/freenet/wot/Trust.java

index fe76846..9a70a14 100644 (file)
@@ -19,6 +19,8 @@ package net.pterodactylus.sone.freenet.wot;
 
 import static com.google.common.base.Objects.equal;
 
+import com.google.common.base.Objects;
+
 /**
  * Container class for trust in the web of trust.
  *
@@ -90,6 +92,11 @@ public class Trust {
                return equal(getExplicit(), trust.getExplicit()) && equal(getImplicit(), trust.getImplicit()) && equal(getDistance(), trust.getDistance());
        }
 
+       @Override
+       public int hashCode() {
+               return Objects.hashCode(explicit, implicit, distance);
+       }
+
        /** {@inheritDoc} */
        @Override
        public String toString() {