sschuberth commented on PR #460:
URL: https://github.com/apache/commons-compress/pull/460#issuecomment-1887283286
Looks like in
public boolean isFile() {
if (file != null) {
return Files.isRegularFile(file, linkOptions);
}
if (linkFlag == LF_OLDNORM || linkFlag == LF_NORMAL) {
return true;
}
return !getName().endsWith("/");
}
`file` is `null`, but `!getName().endsWith("/")` returns `true`. I'll
investigate a bit further.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]