mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 18:50:51 +01:00
Fix duplicate lowercasing in NamespacedKey
By: md_5 <git@md-5.net>
This commit is contained in:
parent
1158b5a586
commit
3acdc1f1b9
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public final class NamespacedKey {
|
|||
Preconditions.checkArgument(key != null, "Key cannot be null");
|
||||
|
||||
this.namespace = plugin.getName().toLowerCase(Locale.ROOT);
|
||||
this.key = key.toLowerCase().toLowerCase(Locale.ROOT);
|
||||
this.key = key.toLowerCase(Locale.ROOT);
|
||||
|
||||
// Check validity after normalization
|
||||
Preconditions.checkArgument(VALID_NAMESPACE.matcher(this.namespace).matches(), "Invalid namespace. Must be [a-z0-9._-]: %s", this.namespace);
|
||||
|
|
Loading…
Reference in a new issue