Fix parameter name.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 07:22:44 +0000 (09:22 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 07:22:44 +0000 (09:22 +0200)
src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java

index 6afc3b7..5f9ff5d 100644 (file)
@@ -100,13 +100,13 @@ public class SoneTemplatePage extends TemplatePage {
        /**
         * Returns the currently logged in Sone.
         *
-        * @param toadletContenxt
+        * @param toadletContext
         *            The toadlet context
         * @return The currently logged in Sone, or {@code null} if no Sone is
         *         currently logged in
         */
-       protected Sone getCurrentSone(ToadletContext toadletContenxt) {
-               Session session = getCurrentSession(toadletContenxt);
+       protected Sone getCurrentSone(ToadletContext toadletContext) {
+               Session session = getCurrentSession(toadletContext);
                if (session == null) {
                        return null;
                }