X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FOptionsPage.java;h=3dc12c52663287906f0f1953a3c1c866cd081f07;hp=0f9051d5a92e9ea75f74049444ec747e5ea077d0;hb=4c831fb948000bc1730ebcde73eeb62317f4ac54;hpb=ffe8711403c25bebba67b0835174fa29b62b8fa7 diff --git a/src/main/java/net/pterodactylus/sone/web/OptionsPage.java b/src/main/java/net/pterodactylus/sone/web/OptionsPage.java index 0f9051d..3dc12c5 100644 --- a/src/main/java/net/pterodactylus/sone/web/OptionsPage.java +++ b/src/main/java/net/pterodactylus/sone/web/OptionsPage.java @@ -38,7 +38,7 @@ public class OptionsPage extends SoneTemplatePage { * The Sone web interface */ public OptionsPage(Template template, WebInterface webInterface) { - super("options.html", template, "Page.Options.Title", webInterface); + super("options.html", template, "Page.Options.Title", webInterface, false); } // @@ -66,16 +66,4 @@ public class OptionsPage extends SoneTemplatePage { template.set("really-clear-on-next-restart", options.getBooleanOption("ReallyClearOnNextRestart").get()); } - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected boolean requiresLogin() { - return false; - } - }