]> source.dussan.org Git - vaadin-framework.git/commitdiff
Change field types from LinkedHashSet back to HashSet to retain binary compatibility...
authorJohannes Dahlström <johannes.dahlstrom@vaadin.com>
Thu, 16 May 2013 09:36:37 +0000 (09:36 +0000)
committerArtur Signell <artur@vaadin.com>
Wed, 5 Jun 2013 09:24:58 +0000 (12:24 +0300)
svn changeset:25964/svn branch:6.8

Change-Id: Iddf0fa7de10a788e1a51e006e92ed3976a39a30b

server/src/com/vaadin/event/ActionManager.java

index ce3e27d53902128df3f0b47c765b8e1f02d0b5b3..8d7a64b3640550d5863cee77755e167ca8977d0f 100644 (file)
@@ -15,6 +15,7 @@
  */
 package com.vaadin.event;
 
+import java.util.HashSet;
 import java.util.LinkedHashSet;
 import java.util.Map;
 
@@ -43,11 +44,15 @@ public class ActionManager implements Action.Container, Action.Handler,
 
     private static final long serialVersionUID = 1641868163608066491L;
 
-    /** List of action handlers */
-    protected LinkedHashSet<Action> ownActions = null;
+    /**
+     * List of action handlers. Guaranteed to keep the original insertion order.
+     */
+    protected HashSet<Action> ownActions = null;
 
-    /** List of action handlers */
-    protected LinkedHashSet<Handler> actionHandlers = null;
+    /**
+     * List of action handlers. Guaranteed to keep the original insertion order.
+     */
+    protected HashSet<Handler> actionHandlers = null;
 
     /** Action mapper */
     protected KeyMapper<Action> actionMapper = null;