Commenting out the Verify API calls in the object instantiation to avoid state explos...
[smartthings-infrastructure.git] / DoorControl / DoorControls.groovy
index 25818009adfd0ba480940322ed19e9fc60713c61..9cb85cd30da7c05682b249b7fb540b8c25e296a3 100644 (file)
@@ -24,14 +24,14 @@ public class DoorControls {
                this.deviceNumbers = deviceNumbers
                this.doorControls = []
                
-               def init = Verify.getBoolean()
+               /*def init = Verify.getBoolean()
                if (init) {
                        this.doorState = "closed"
                        this.doorLatestValue = "closed"
                } else {
                        this.doorState = "open"
                        this.doorLatestValue = "open"
-               }
+               }*/
                doorControls.add(new DoorControl(sendEvent, id, label, displayName, this.doorState, this.doorLatestValue))
        }