Merge branch 'next' into edit-wot-trust
[Sone.git] / src / main / java / net / pterodactylus / sone / web / DeleteSonePage.java
index 4e63278..ae01573 100644 (file)
@@ -39,7 +39,7 @@ public class DeleteSonePage extends SoneTemplatePage {
         *            The Sone web interface
         */
        public DeleteSonePage(Template template, WebInterface webInterface) {
-               super("deleteSone.html", template, "Page.DeleteSone.Title", webInterface);
+               super("deleteSone.html", template, "Page.DeleteSone.Title", webInterface, true);
        }
 
        //
@@ -55,22 +55,10 @@ public class DeleteSonePage extends SoneTemplatePage {
                if (request.getMethod() == Method.POST) {
                        if (request.getHttpRequest().isPartSet("deleteSone")) {
                                Sone currentSone = getCurrentSone(request.getToadletContext());
-                               webInterface.core().deleteSone(currentSone);
+                               webInterface.getCore().deleteSone(currentSone);
                        }
                        throw new RedirectException("index.html");
                }
        }
 
-       //
-       // SONETEMPLATEPAGE METHODS
-       //
-
-       /**
-        * {@inheritDoc}
-        */
-       @Override
-       protected boolean requiresLogin() {
-               return true;
-       }
-
 }