You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String :my_key is parsable into minecraft:my_key, but it doesn't follow the documented pattern ([a-z0-9_\\-.]+:)?[a-z0-9_\\-./]+ - the pattern requires at least one symbol for the namespace if such is used.
The text was updated successfully, but these errors were encountered:
Just wanna note that it's likely not a bug, but rather a problem with used @Pattern, as such case (:my_key) is actually mentioned in the javadoc itself. Maybe the used pattern ([a-z0-9_\\-.]+:)? better be changed to ([a-z0-9_\\-.]*:)? instead.
But I'd say I find it weird that such key is actually parsable into anything, as it doesn't make much sense for me.
String
:my_key
is parsable intominecraft:my_key
, but it doesn't follow the documented pattern([a-z0-9_\\-.]+:)?[a-z0-9_\\-./]+
- the pattern requires at least one symbol for the namespace if such is used.The text was updated successfully, but these errors were encountered: