Update years in copyright line
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Client.java
index ad094f2..e8f5082 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - Client.java - Copyright © 2010–2013 David Roden
+ * Sone - Client.java - Copyright © 2010–2015 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,6 +19,8 @@ package net.pterodactylus.sone.data;
 
 import static com.google.common.base.Objects.equal;
 
+import com.google.common.base.Objects;
+
 /**
  * Container for the client information of a {@link Sone}.
  *
@@ -76,4 +78,9 @@ public class Client {
                return equal(getName(), client.getName()) && equal(getVersion(), client.getVersion());
        }
 
+       @Override
+       public int hashCode() {
+               return Objects.hashCode(name, version);
+       }
+
 }