Commit #4
[smartthings-infrastructure.git] / Location / Phrase.groovy
index f9f30815b20eba3db632fa46ea1bfe27c04cdbb5..c70b934d878a09304916bbbecc4b120d8f68be03 100644 (file)
@@ -2,13 +2,13 @@
 package Location
 
 class Phrase {
-       private LinkedHashMap Phrases
+       private LinkedHashMap phrases
        
        Phrase() {
-               this.Phrases = [id:0, label:"Good Morning!"]
+               this.phrases = [id:0, label:"Good Morning!"]
        } 
        def getPhrases() {
-               return Phrases
+               return this.phrases
        }
 }