mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-05 02:22:55 +01:00
Fixed "-d" option of build command - it was always enabled.
This commit is contained in:
parent
59da5db05f
commit
6e7e0c0984
@ -74,7 +74,7 @@ public class SmaliBuilder {
|
||||
StringBuilder out = new StringBuilder();
|
||||
List<String> lines = IOUtils.readLines(inStream);
|
||||
|
||||
if (!mFlags.containsKey("debug")) {
|
||||
if (!mFlags.get("debug")) {
|
||||
final String[] linesArray = lines.toArray(new String[0]);
|
||||
for (int i = 1; i < linesArray.length - 1; i++) {
|
||||
out.append(linesArray[i].split("//", 2)[1]).append('\n');
|
||||
|
Loading…
Reference in New Issue
Block a user