Remove setClient method from Sone.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 7 Dec 2014 01:06:54 +0000 (02:06 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 7 Dec 2014 01:06:54 +0000 (02:06 +0100)
src/main/java/net/pterodactylus/sone/data/Sone.java
src/main/java/net/pterodactylus/sone/data/impl/IdOnlySone.java

index 45909d5..4bde55b 100644 (file)
@@ -303,15 +303,6 @@ public interface Sone extends Identified, Fingerprintable, Comparable<Sone> {
        Client getClient();
 
        /**
-        * Sets the client used by this Sone.
-        *
-        * @param client
-        *              The client used by this Sone, or {@code null}
-        * @return This Sone (for method chaining)
-        */
-       Sone setClient(Client client);
-
-       /**
         * Returns whether this Sone is known.
         *
         * @return {@code true} if this Sone is known, {@code false} otherwise
index 8875f9a..6352c10 100644 (file)
@@ -96,11 +96,6 @@ public class IdOnlySone implements Sone {
        }
 
        @Override
-       public Sone setClient(Client client) {
-               return null;
-       }
-
-       @Override
        public boolean isKnown() {
                return false;
        }