From: David ‘Bombe’ Roden Date: Tue, 2 Dec 2014 20:39:16 +0000 (+0100) Subject: Remove javadoc, rename boolean variable to better match its purpose. X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=d063d7366c883a8f130de67af67a84eb6d725361 Remove javadoc, rename boolean variable to better match its purpose. --- 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); } //