DVCSMP-2325 - Remove parse method from simulated Switch

sin string
This commit is contained in:
juano2310
2017-01-20 14:42:20 -05:00
parent f0f02a2c00
commit 7648fd4a17

View File

@@ -12,7 +12,7 @@
* *
*/ */
metadata { metadata {
definition (name: "Simulated Switch", namespace: "smartthings/testing", author: "bob") { definition (name: "Simulated Switch", namespace: "smartthings/testing", author: "bob") {
capability "Switch" capability "Switch"
capability "Relay Switch" capability "Relay Switch"
@@ -39,9 +39,7 @@ metadata {
} }
} }
def parse(String description) { def parse(description) {
def pair = description.split(":")
createEvent(name: pair[0].trim(), value: pair[1].trim())
} }
def on() { def on() {