From f089a49adb755d2a5c8aa97471de19ba20b44b1e Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Mon, 4 Oct 2010 11:46:08 +0000 Subject: [PATCH] #5692 Generics: ActionManager svn changeset:15348/svn branch:6.5 --- src/com/vaadin/event/ActionManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/vaadin/event/ActionManager.java b/src/com/vaadin/event/ActionManager.java index 621a2413b9..e3d579f4ef 100644 --- a/src/com/vaadin/event/ActionManager.java +++ b/src/com/vaadin/event/ActionManager.java @@ -189,7 +189,7 @@ public class ActionManager implements Action.Container, Action.Handler, clientHasActions = !actions.isEmpty(); } - public void handleActions(Map variables, Container sender) { + public void handleActions(Map variables, Container sender) { if (variables.containsKey("action") && actionMapper != null) { final String key = (String) variables.get("action"); final Action action = (Action) actionMapper.get(key); -- 2.39.5