roadSurfer commented on code in PR #297: URL: https://github.com/apache/maven-enforcer/pull/297#discussion_r1910115369
########## enforcer-rules/src/main/java/org/apache/maven/enforcer/rules/files/RequireFilesExist.java: ########## @@ -31,35 +30,11 @@ public final class RequireFilesExist extends AbstractRequireFiles { @Override boolean checkFile(File file) { // if we get here and the handle is null, treat it as a success - return file == null ? true : file.exists() && osIndependentNameMatch(file, true); + return file == null ? true : file.exists(); Review Comment: Old habits die hard. :-) -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org