mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-01 14:44:26 +02:00
[skip] rename var to match extension or file without extension
This commit is contained in:
parent
22bd5b0acc
commit
0011498b52
@ -161,7 +161,7 @@ public class Androlib {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void recordUncompressedFiles(ExtFile apkFile, Collection<String> uncompressedExtensions) throws AndrolibException {
|
public void recordUncompressedFiles(ExtFile apkFile, Collection<String> uncompressedFilesOrExts) throws AndrolibException {
|
||||||
try {
|
try {
|
||||||
Directory unk = apkFile.getDirectory();
|
Directory unk = apkFile.getDirectory();
|
||||||
Set<String> files = unk.getFiles(true);
|
Set<String> files = unk.getFiles(true);
|
||||||
@ -174,8 +174,8 @@ public class Androlib {
|
|||||||
if (ext.isEmpty()) {
|
if (ext.isEmpty()) {
|
||||||
ext = file;
|
ext = file;
|
||||||
}
|
}
|
||||||
if (! uncompressedExtensions.contains(ext)) {
|
if (! uncompressedFilesOrExts.contains(ext)) {
|
||||||
uncompressedExtensions.add(ext);
|
uncompressedFilesOrExts.add(ext);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user