Add equals() implementation.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 5 Aug 2014 16:46:15 +0000 (18:46 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 5 Aug 2014 16:46:15 +0000 (18:46 +0200)
src/main/java/net/pterodactylus/sone/data/Client.java

index b77b9f2..ad094f2 100644 (file)
@@ -17,6 +17,8 @@
 
 package net.pterodactylus.sone.data;
 
 
 package net.pterodactylus.sone.data;
 
+import static com.google.common.base.Objects.equal;
+
 /**
  * Container for the client information of a {@link Sone}.
  *
 /**
  * Container for the client information of a {@link Sone}.
  *
@@ -65,4 +67,13 @@ public class Client {
                return version;
        }
 
                return version;
        }
 
+       @Override
+       public boolean equals(Object object) {
+               if (!(object instanceof Client)) {
+                       return false;
+               }
+               Client client = (Client) object;
+               return equal(getName(), client.getName()) && equal(getVersion(), client.getVersion());
+       }
+
 }
 }