Merge branch 'release-0.9.7'
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / IdOnlySone.java
index 0ef220b..79766b5 100644 (file)
@@ -18,6 +18,8 @@ import net.pterodactylus.sone.freenet.wot.Identity;
 
 import freenet.keys.FreenetURI;
 
+import com.google.common.base.Objects;
+
 /**
  * {@link Sone} implementation that only stores the ID of a Sone and returns
  * {@code null}, {@code 0}, or empty collections where appropriate.
@@ -182,8 +184,7 @@ public class IdOnlySone implements Sone {
        }
 
        @Override
-       public Sone removeLikedPostId(String postId) {
-               return this;
+       public void removeLikedPostId(String postId) {
        }
 
        @Override
@@ -207,8 +208,7 @@ public class IdOnlySone implements Sone {
        }
 
        @Override
-       public Sone removeLikedReplyId(String replyId) {
-               return this;
+       public void removeLikedReplyId(String replyId) {
        }
 
        @Override
@@ -240,4 +240,14 @@ public class IdOnlySone implements Sone {
                return id;
        }
 
+       @Override
+       public int hashCode() {
+               return id.hashCode();
+       }
+
+       @Override
+       public boolean equals(Object object) {
+               return (object != null) && (object.getClass() == getClass()) && Objects.equal(id, ((IdOnlySone) object).id);
+       }
+
 }