mirror of
https://github.com/apache/lucene.git
synced 2025-03-07 00:39:21 +00:00
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…
x
Reference in New Issue
Block a user