[Minor] Code cleanup

This commit is contained in:
Robert von Burg 2020-06-26 11:36:10 +02:00
parent 9c7044a957
commit 78894216d0
1 changed files with 2 additions and 2 deletions

View File

@ -539,9 +539,9 @@ public enum StrolchValueType {
}
};
private String type;
private final String type;
private StrolchValueType(String type) {
StrolchValueType(String type) {
this.type = type;
}