Skip to content

Commit 3cfa4ed

Browse files
committed
Various UrlParser improvements
See gh-32513
1 parent 27d2200 commit 3cfa4ed

File tree

2 files changed

+515
-107
lines changed

2 files changed

+515
-107
lines changed

Diff for: spring-web/src/main/java/org/springframework/web/util/HierarchicalUriComponents.java

-6
Original file line numberDiff line numberDiff line change
@@ -657,12 +657,6 @@ public boolean isAllowed(int c) {
657657
public boolean isAllowed(int c) {
658658
return isUnreserved(c);
659659
}
660-
},
661-
C0 {
662-
@Override
663-
public boolean isAllowed(int c) {
664-
return !(c >= 0 && c <= 0x1f) && !(c > '~');
665-
}
666660
};
667661

668662
/**

0 commit comments

Comments
 (0)