minor refactorings

This commit is contained in:
Sven Kubiak
2015-12-10 11:17:36 +01:00
parent ceaf8d1bc8
commit de59b39be5
6 changed files with 16 additions and 20 deletions

View File

@@ -8,7 +8,7 @@ package de.svenkubiak.jpushover.enums;
public enum Sound {
PUSHOVER("pushover"),
BIKE("bike"),
BUGLE("bugke"),
BUGLE("bugle"),
CASHREGISTET("cashregister"),
CLASSICAL("classical"),
COSMIC("cosmic"),
@@ -35,7 +35,7 @@ public enum Sound {
this.value = value;
}
public String get() {
public String toString() {
return this.value;
}
}