mirror of
https://github.com/iBotPeaches/Apktool.git
synced 2024-12-03 18:21:09 +00: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 {
|
||||
Directory unk = apkFile.getDirectory();
|
||||
Set<String> files = unk.getFiles(true);
|
||||
@ -174,8 +174,8 @@ public class Androlib {
|
||||
if (ext.isEmpty()) {
|
||||
ext = file;
|
||||
}
|
||||
if (! uncompressedExtensions.contains(ext)) {
|
||||
uncompressedExtensions.add(ext);
|
||||
if (! uncompressedFilesOrExts.contains(ext)) {
|
||||
uncompressedFilesOrExts.add(ext);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user