Update the-big-switch.groovy
authorSeyed Amir Hossein Aqajari <amiraj.95@uci.edu>
Tue, 6 Aug 2019 20:34:17 +0000 (13:34 -0700)
committerGitHub Enterprise <noreply@github.uci.edu>
Tue, 6 Aug 2019 20:34:17 +0000 (13:34 -0700)
official/the-big-switch.groovy

index e631fa013ee7405d455240e67efb8f1dd4f1b5c3..4dd13595b538f4bdac1969b2d6d8ac72541284ac 100755 (executable)
@@ -65,14 +65,14 @@ def logHandler(evt) {
 
 def onHandler(evt) {
        log.debug evt.value
-       log.debug onSwitches()
-       onSwitches()?.on()
+       log.debug onSwitches1()
+       onSwitches1()?.on()
 }
 
 def offHandler(evt) {
        log.debug evt.value
-       log.debug offSwitches()
-       offSwitches()?.off()
+       log.debug offSwitches1()
+       offSwitches1()?.off()
 }
 
 def dimHandler(evt) {
@@ -80,13 +80,13 @@ def dimHandler(evt) {
        dimSwitches?.setLevel(evt.value)
 }
 
-private onSwitches() {
+private onSwitches1() {
        if(switches && onSwitches) { switches + onSwitches }
        else if(switches) { switches }
        else { onSwitches }
 }
 
-private offSwitches() {
+private offSwitches1() {
        if(switches && offSwitches) { switches + offSwitches }
        else if(switches) { switches }
        else { offSwitches }