From: David ‘Bombe’ Roden Date: Thu, 14 Oct 2010 07:22:44 +0000 (+0200) Subject: Fix parameter name. X-Git-Tag: 0.1-RC1~428 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=b6e8e4eb71b7cfcb7cff892cca23d20925eabeb8 Fix parameter name. --- diff --git a/src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java b/src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java index 6afc3b7..5f9ff5d 100644 --- a/src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java +++ b/src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java @@ -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; }