Skip to content

Commit

Permalink
remove unnecessary grouping
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Klem <Yannic.Klem@bosch.io>
  • Loading branch information
Yannic92 committed Mar 24, 2022
1 parent 34f4450 commit 557124a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -67,7 +67,7 @@ public final class RegexPatterns {
* @since 2.2.0
*/
public static final String ALLOWED_NAMESPACE_CHARACTERS_REGEX_INNER =
"([.-])" + ALLOWED_NAMESPACE_CHARACTERS_REGEX;
"[.-]" + ALLOWED_NAMESPACE_CHARACTERS_REGEX;

/**
* @deprecated Use {@link #ALLOWED_NAMESPACE_CHARACTERS_REGEX_INNER}. The name of the variable actually described
Expand Down

0 comments on commit 557124a

Please sign in to comment.