Merge remote-tracking branch 'origin/patch'

This commit is contained in:
Ryan Kurtz 2022-05-17 05:41:57 -04:00
commit a4111b1592

View File

@ -195,10 +195,7 @@ public class DyldCacheUtils {
if (file != null && shouldCombineSplitFiles) {
String baseName = file.getName();
File[] splitFiles = file.getParentFile().listFiles(f -> {
if (!f.getName().startsWith(baseName)) {
return false;
}
if (f.getName().equals(baseName)) {
if (!f.getName().startsWith(baseName + ".")) {
return false;
}
if (f.getName().toLowerCase().endsWith(".map")) {