mirror of https://github.com/apache/lucene.git
Fix only use of .toLowerCase() with no Locale (#12856)
This commit is contained in:
parent
a32f6acadf
commit
6d27c20579
|
@ -190,6 +190,6 @@ public class Checksum extends DefaultTask {
|
|||
|
||||
private FileCollection filesFor(final Algorithm algo) {
|
||||
return getProject()
|
||||
.fileTree(getOutputDir(), files -> files.include("**/*." + algo.toString().toLowerCase()));
|
||||
.fileTree(getOutputDir(), files -> files.include("**/*." + algo.toString().toLowerCase(Locale.ROOT)));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue