Lowercase the namespace correctly

This commit is contained in:
games647
2018-07-24 14:33:33 +02:00
parent 260b93a565
commit 542aabad73

View File

@ -11,7 +11,7 @@ public class NamespaceKey {
this.namespace = namespace.toLowerCase();
this.key = key.toLowerCase();
this.combined = namespace + ':' + key;
this.combined = this.namespace + ':' + this.key;
}
public String getCombinedName() {