From dfb8324dab3d283394c1d672657c8c7f276f2789 Mon Sep 17 00:00:00 2001 From: bdemsky Date: Tue, 6 Aug 2019 18:36:52 -0700 Subject: [PATCH] Fix globalvariable array lists again --- GlobalVariables/GlobalVariablesEachApp.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GlobalVariables/GlobalVariablesEachApp.groovy b/GlobalVariables/GlobalVariablesEachApp.groovy index ae8b936..ba78f98 100644 --- a/GlobalVariables/GlobalVariablesEachApp.groovy +++ b/GlobalVariables/GlobalVariablesEachApp.groovy @@ -3,11 +3,11 @@ def state = [home:[],away:[],night:[]] //Create a global logger object for methods def log = new Logger() //Create a global variable for Functions in Subscribe method -def functionList = [] +def functionList = new ArrayList(20) //Create a global variable for Objects in Subscribe method -def objectList = [] +def objectList = new ArrayList(20) //Create a global variable for Events in Subscribe method -def eventList = [] +def eventList = new ArrayList(20) //Create a global variable for settings def settings //Zip code -- 2.34.1