sonar refactorings

This commit is contained in:
Sven Kubiak
2015-01-07 20:11:23 +01:00
parent a9b8eea2e6
commit c9b7f0ade2
5 changed files with 48 additions and 51 deletions

View File

@ -11,7 +11,7 @@ public enum Constants {
PRIORITY("priority"),
TIMESTAMP("timestamp"),
URL("url"),
URLTITLE("urltile");
URLTITLE("urltitle");
private final String value;
@ -19,7 +19,7 @@ public enum Constants {
this.value = value;
}
public String value() {
public String get() {
return this.value;
}
}