Remove javadoc, rename boolean variable to better match its purpose.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 2 Dec 2014 20:39:16 +0000 (21:39 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 2 Dec 2014 20:39:16 +0000 (21:39 +0100)
src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java

index bb32362..ada501a 100644 (file)
@@ -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<Sone> 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<Sone> getCurrentSone(ToadletContext toadletContext, boolean create) {
-               return webInterface.getCurrentSone(toadletContext, create);
+       protected Optional<Sone> getCurrentSone(ToadletContext toadletContext, boolean createSession) {
+               return webInterface.getCurrentSone(toadletContext, createSession);
        }
 
        //