Remove unused session-related methods from public interface
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 24 Jan 2017 17:54:07 +0000 (18:54 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 24 Jan 2017 17:54:11 +0000 (18:54 +0100)
src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java
src/main/java/net/pterodactylus/sone/web/WebInterface.java
src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java

index 6278321..27d4bf7 100644 (file)
@@ -118,35 +118,6 @@ public class SoneTemplatePage extends FreenetTemplatePage {
        //
 
        /**
-        * Returns the current session, creating a new session if there is no
-        * current session.
-        *
-        * @param toadletContenxt
-        *            The toadlet context
-        * @return The current session, or {@code null} if there is no current
-        *         session
-        */
-       protected Session getCurrentSession(ToadletContext toadletContenxt) {
-               return webInterface.getCurrentSession(toadletContenxt);
-       }
-
-       /**
-        * Returns the current session, creating a new session if there is no
-        * current session and {@code create} is {@code true}.
-        *
-        * @param toadletContenxt
-        *            The toadlet context
-        * @param create
-        *            {@code true} to create a new session if there is no current
-        *            session, {@code false} otherwise
-        * @return The current session, or {@code null} if there is no current
-        *         session
-        */
-       protected Session getCurrentSession(ToadletContext toadletContenxt, boolean create) {
-               return webInterface.getCurrentSession(toadletContenxt, create);
-       }
-
-       /**
         * Returns the currently logged in Sone.
         *
         * @param toadletContext
index a1352b9..766098f 100644 (file)
@@ -381,7 +381,7 @@ public class WebInterface {
         * @return The current session, or {@code null} if there is no current
         *         session
         */
-       public Session getCurrentSession(ToadletContext toadletContenxt) {
+       private Session getCurrentSession(ToadletContext toadletContenxt) {
                return getCurrentSession(toadletContenxt, true);
        }
 
@@ -397,7 +397,7 @@ public class WebInterface {
         * @return The current session, or {@code null} if there is no current
         *         session
         */
-       public Session getCurrentSession(ToadletContext toadletContenxt, boolean create) {
+       private Session getCurrentSession(ToadletContext toadletContenxt, boolean create) {
                Session session = getSessionManager().useSession(toadletContenxt);
                if (create && (session == null)) {
                        session = getSessionManager().createSession(UUID.randomUUID().toString(), toadletContenxt);
index 289b5a4..1050eee 100644 (file)
@@ -77,35 +77,6 @@ public abstract class JsonPage implements FreenetPage {
        //
 
        /**
-        * Returns the current session, creating a new session if there is no
-        * current session.
-        *
-        * @param toadletContenxt
-        *            The toadlet context
-        * @return The current session, or {@code null} if there is no current
-        *         session
-        */
-       protected Session getCurrentSession(ToadletContext toadletContenxt) {
-               return webInterface.getCurrentSession(toadletContenxt);
-       }
-
-       /**
-        * Returns the current session, creating a new session if there is no
-        * current session and {@code create} is {@code true}.
-        *
-        * @param toadletContenxt
-        *            The toadlet context
-        * @param create
-        *            {@code true} to create a new session if there is no current
-        *            session, {@code false} otherwise
-        * @return The current session, or {@code null} if there is no current
-        *         session
-        */
-       protected Session getCurrentSession(ToadletContext toadletContenxt, boolean create) {
-               return webInterface.getCurrentSession(toadletContenxt, create);
-       }
-
-       /**
         * Returns the currently logged in Sone.
         *
         * @param toadletContext