X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2Fwot%2FTrust.java;h=16f7bd1e0daf609c188fa9f6e49e3755651ad3a0;hp=fe7684635d951da326e76c6d0ece21e0eb441171;hb=62573c314957b1851f4fbe693b8746686caa940a;hpb=43364d6d488aede562d4ca0d2ec6a0e04f125110 diff --git a/src/main/java/net/pterodactylus/sone/freenet/wot/Trust.java b/src/main/java/net/pterodactylus/sone/freenet/wot/Trust.java index fe76846..16f7bd1 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/wot/Trust.java +++ b/src/main/java/net/pterodactylus/sone/freenet/wot/Trust.java @@ -1,5 +1,5 @@ /* - * Sone - Trust.java - Copyright © 2010–2013 David Roden + * Sone - Trust.java - Copyright © 2010–2016 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,10 +19,10 @@ 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. - * - * @author David ‘Bombe’ Roden */ public class Trust { @@ -90,6 +90,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() {