From: David ‘Bombe’ Roden Date: Tue, 19 Oct 2010 14:39:50 +0000 (+0200) Subject: Don’t require a login to view Sones. X-Git-Tag: 0.1-RC1~193 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=fb35fd7f5f4aa4e830f6767eefbc564e4254e017 Don’t require a login to view Sones. --- diff --git a/src/main/java/net/pterodactylus/sone/web/ViewSonePage.java b/src/main/java/net/pterodactylus/sone/web/ViewSonePage.java index 4a12ed9..ba69eed 100644 --- a/src/main/java/net/pterodactylus/sone/web/ViewSonePage.java +++ b/src/main/java/net/pterodactylus/sone/web/ViewSonePage.java @@ -54,16 +54,4 @@ public class ViewSonePage extends SoneTemplatePage { template.set("sone", sone); } - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected boolean requiresLogin() { - return true; - } - }