Browse Source

Removed Unicode Character from Parameter Name

Kyle Anderson 8 years ago
parent
commit
d8a678df6f

+ 1 - 1
web/src/main/java/org/springframework/security/web/session/SessionInformationExpiredStrategy.java

@@ -29,6 +29,6 @@ import javax.servlet.ServletException;
  */
 public interface SessionInformationExpiredStrategy {
 
-	void onExpiredSessionDetected(SessionInformationExpiredEvent eventØ)
+	void onExpiredSessionDetected(SessionInformationExpiredEvent event)
 			throws IOException, ServletException;
 }