Move login requirement to SoneTemplatePage.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / CreateReplyPage.java
index 9274874..231d372 100644 (file)
@@ -38,7 +38,7 @@ public class CreateReplyPage extends SoneTemplatePage {
         *            The Sone web interface
         */
        public CreateReplyPage(Template template, WebInterface webInterface) {
-               super("createReply.html", template, "Page.CreateReply.Title", webInterface);
+               super("createReply.html", template, "Page.CreateReply.Title", webInterface, true);
        }
 
        //
@@ -68,16 +68,4 @@ public class CreateReplyPage extends SoneTemplatePage {
                template.set("returnPage", returnPage);
        }
 
-       //
-       // SONETEMPLATEPAGE METHODS
-       //
-
-       /**
-        * {@inheritDoc}
-        */
-       @Override
-       protected boolean requiresLogin() {
-               return true;
-       }
-
 }