Remove javadoc comments from overriding methods.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / JsonPage.java
index 3c7f587..ea8d52b 100644 (file)
@@ -34,10 +34,11 @@ import net.pterodactylus.util.logging.Logging;
 import net.pterodactylus.util.web.Page;
 import net.pterodactylus.util.web.Response;
 
-import com.fasterxml.jackson.databind.ObjectMapper;
 import freenet.clients.http.SessionManager.Session;
 import freenet.clients.http.ToadletContext;
 
+import com.fasterxml.jackson.databind.ObjectMapper;
+
 /**
  * A JSON page is a specialized {@link Page} that will always return a JSON
  * object to the browser, e.g. for use with AJAX or other scripting frameworks.
@@ -196,25 +197,16 @@ public abstract class JsonPage implements FreenetPage {
        // PAGE METHODS
        //
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public String getPath() {
                return path;
        }
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public boolean isPrefixPage() {
                return false;
        }
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public Response handleRequest(FreenetRequest request, Response response) throws IOException {
                if (webInterface.getCore().getPreferences().isRequireFullAccess() && !request.getToadletContext().isAllowedFullAccess()) {
@@ -240,9 +232,6 @@ public abstract class JsonPage implements FreenetPage {
                }
        }
 
-       /**
-        * {@inheritDoc}
-        */
        @Override
        public boolean isLinkExcepted(URI link) {
                return false;