Remove @author tags
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Sone.java
index 258fb4c..33b8edd 100644 (file)
@@ -44,15 +44,11 @@ import com.google.common.primitives.Ints;
 /**
  * A Sone defines everything about a user: her profile, her status updates, her
  * replies, her likes and dislikes, etc.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public interface Sone extends Identified, Fingerprintable, Comparable<Sone> {
 
        /**
         * Enumeration for the possible states of a {@link Sone}.
-        *
-        * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
         */
        public enum SoneStatus {
 
@@ -443,10 +439,8 @@ public interface Sone extends Identified, Fingerprintable, Comparable<Sone> {
         *
         * @param postId
         *              The ID of the post
-        * @return This Sone (for method chaining)
         */
-       @Nonnull
-       Sone removeLikedPostId(@Nonnull String postId);
+       void removeLikedPostId(@Nonnull String postId);
 
        /**
         * Returns the IDs of all liked replies.
@@ -491,10 +485,8 @@ public interface Sone extends Identified, Fingerprintable, Comparable<Sone> {
         *
         * @param replyId
         *              The ID of the reply
-        * @return This Sone (for method chaining)
         */
-       @Nonnull
-       Sone removeLikedReplyId(@Nonnull String replyId);
+       void removeLikedReplyId(@Nonnull String replyId);
 
        /**
         * Returns the root album that contains all visible albums of this Sone.