mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-02 17:12:55 +01:00
chore: fix typo on resource message, drop shorthand if logic
This commit is contained in:
parent
3ba9838d08
commit
c7bb163834
@ -147,10 +147,11 @@ public class ResourcesDecoder {
|
||||
inApk = apkFile.getDirectory();
|
||||
out = new FileDirectory(outDir);
|
||||
|
||||
if (hasResources())
|
||||
LOGGER.info("Decoding AndroidManifest.xml framework resources...");
|
||||
else
|
||||
if (hasResources()) {
|
||||
LOGGER.info("Decoding AndroidManifest.xml with resources...");
|
||||
} else {
|
||||
LOGGER.info("Decoding AndroidManifest.xml with only framework resources...");
|
||||
}
|
||||
InputStream inputStream = inApk.getFileInput("AndroidManifest.xml");
|
||||
OutputStream outputStream = out.getFileOutput("AndroidManifest.xml");
|
||||
fileDecoder.decodeManifest(inputStream, outputStream);
|
||||
|
Loading…
Reference in New Issue
Block a user