Remove javadoc comments from overriding methods.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / AbstractPostBuilder.java
index 1e45609..6504558 100644 (file)
@@ -63,36 +63,24 @@ public abstract class AbstractPostBuilder implements PostBuilder {
        // POSTBUILDER METHODS
        //
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public PostBuilder withId(String id) {
                this.id = fromNullable(id);
                return this;
        }
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public PostBuilder withTime(long time) {
                this.time = of(time);
                return this;
        }
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public PostBuilder withText(String text) {
                this.text = text;
                return this;
        }
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public PostBuilder to(Optional<String> recipientId) {
                this.recipientId = recipientId;