From ec555edf127e060594bf2b7630897e250aab5779 Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Thu, 27 Feb 2020 14:43:31 +0100 Subject: [PATCH] [Minor] Keep insertion order for controllers in EventBasedExecutionHandler --- .../java/li/strolch/execution/EventBasedExecutionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/li.strolch.service/src/main/java/li/strolch/execution/EventBasedExecutionHandler.java b/li.strolch.service/src/main/java/li/strolch/execution/EventBasedExecutionHandler.java index 2780788d1..e060a00b6 100644 --- a/li.strolch.service/src/main/java/li/strolch/execution/EventBasedExecutionHandler.java +++ b/li.strolch.service/src/main/java/li/strolch/execution/EventBasedExecutionHandler.java @@ -66,7 +66,7 @@ public class EventBasedExecutionHandler extends ExecutionHandler { @Override public void initialize(ComponentConfiguration configuration) throws Exception { - this.controllers = synchronizedMapOfMaps(new MapOfMaps<>()); + this.controllers = synchronizedMapOfMaps(new MapOfMaps<>(true)); super.initialize(configuration); }