WIP #8441 isNotNormalWithinSelf

oops
This commit is contained in:
Greg Wilkins 2022-08-11 13:32:01 +10:00
parent fcdb8305de
commit 9833be0374
1 changed files with 1 additions and 1 deletions

View File

@ -1214,7 +1214,7 @@ public final class URIUtil
public static boolean isNotNormalWithinSelf(String path)
{
// TODO this can be optimized to avoid allocation.
return normalizePath(path) != null;
return normalizePath(path) == null;
}
/**