Skip to content

Commit d98151b

Browse files
committed
Remove deprecated and deleted CharMatcher enums.
1 parent ac9a8af commit d98151b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/github/fge/uritemplate/parse/CharMatchers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ private CharMatchers()
3737
.precomputed();
3838

3939
static {
40-
final CharMatcher ctl = CharMatcher.JAVA_ISO_CONTROL;
41-
final CharMatcher spc = CharMatcher.WHITESPACE;
40+
final CharMatcher ctl = CharMatcher.javaIsoControl();
41+
final CharMatcher spc = CharMatcher.whitespace();
4242
/*
4343
* This doesn't include the %: percent-encoded sequences will be
4444
* handled in the appropriate template parser

0 commit comments

Comments
 (0)