Fix ROOT_PATH constant to match recent changes

"/" should be 0 segments, isAbsolute=true, hasTrailingSlash=false
This commit is contained in:
Rossen Stoyanchev
2017-06-15 15:40:32 -04:00
parent ef3e309c12
commit 67e482aaf8
2 changed files with 2 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ class DefaultPathSegmentContainer implements PathSegmentContainer {
new DefaultPathSegmentContainer("", Collections.emptyList());
private static final PathSegmentContainer ROOT_PATH =
new DefaultPathSegmentContainer("/", Collections.singletonList(EMPTY_PATH_SEGMENT));
new DefaultPathSegmentContainer("/", Collections.emptyList());
private final String path;