From d063d7366c883a8f130de67af67a84eb6d725361 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Tue, 2 Dec 2014 21:39:16 +0100 Subject: [PATCH] Remove javadoc, rename boolean variable to better match its purpose. --- .../net/pterodactylus/sone/web/ajax/JsonPage.java | 23 ++-------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java index bb32362..ada501a 100644 --- a/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java +++ b/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java @@ -77,31 +77,12 @@ public abstract class JsonPage implements FreenetPage { // ACCESSORS // - /** - * Returns the currently logged in Sone. - * - * @param toadletContext - * The toadlet context - * @return The currently logged in Sone, or {@code null} if no Sone is - * currently logged in - */ protected Optional getCurrentSone(ToadletContext toadletContext) { return webInterface.getCurrentSone(toadletContext); } - /** - * Returns the currently logged in Sone. - * - * @param toadletContext - * The toadlet context - * @param create - * {@code true} to create a new session if no session exists, - * {@code false} to not create a new session - * @return The currently logged in Sone, or {@code null} if no Sone is - * currently logged in - */ - protected Optional getCurrentSone(ToadletContext toadletContext, boolean create) { - return webInterface.getCurrentSone(toadletContext, create); + protected Optional getCurrentSone(ToadletContext toadletContext, boolean createSession) { + return webInterface.getCurrentSone(toadletContext, createSession); } // -- 2.7.4