We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9a8af commit d98151bCopy full SHA for d98151b
src/main/java/com/github/fge/uritemplate/parse/CharMatchers.java
@@ -37,8 +37,8 @@ private CharMatchers()
37
.precomputed();
38
39
static {
40
- final CharMatcher ctl = CharMatcher.JAVA_ISO_CONTROL;
41
- final CharMatcher spc = CharMatcher.WHITESPACE;
+ final CharMatcher ctl = CharMatcher.javaIsoControl();
+ final CharMatcher spc = CharMatcher.whitespace();
42
/*
43
* This doesn't include the %: percent-encoded sequences will be
44
* handled in the appropriate template parser
0 commit comments