Skip to content

Commit

Permalink
Various UrlParser improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
poutsma committed Apr 26, 2024
1 parent 27d2200 commit 3cfa4ed
Show file tree
Hide file tree
Showing 2 changed files with 515 additions and 107 deletions.
Expand Up @@ -657,12 +657,6 @@ public boolean isAllowed(int c) {
public boolean isAllowed(int c) {
return isUnreserved(c);
}
},
C0 {
@Override
public boolean isAllowed(int c) {
return !(c >= 0 && c <= 0x1f) && !(c > '~');
}
};

/**
Expand Down

0 comments on commit 3cfa4ed

Please sign in to comment.