Skip to content

Commit

Permalink
Remove unnecessary escaping
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 4bda33e commit 34f4450
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 34f4450

Please sign in to comment.