Add modifier to post replies to mark them known.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / DefaultReply.java
index 655d114..3d32dcb 100644 (file)
@@ -44,9 +44,6 @@ public abstract class DefaultReply<T extends Reply<T>> implements Reply<T> {
        /** The text of the reply. */
        private final String text;
 
-       /** Whether the reply is known. */
-       private volatile boolean known;
-
        /**
         * Creates a new reply.
         *
@@ -88,18 +85,6 @@ public abstract class DefaultReply<T extends Reply<T>> implements Reply<T> {
                return text;
        }
 
-       @Override
-       public boolean isKnown() {
-               return known;
-       }
-
-       @Override
-       @SuppressWarnings("unchecked")
-       public T setKnown(boolean known) {
-               this.known = known;
-               return (T) this;
-       }
-
        //
        // OBJECT METHODS
        //