mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 13:57:46 +01:00
Fixed "b -d" if there are .parameter directives with defined names (e.g.: .parameter "foo")
This commit is contained in:
parent
6d542f997e
commit
ae39555e3c
@ -182,6 +182,11 @@ public class DebugInjector {
|
|||||||
mOut.append(".parameter \"p").append(currParam++).append("\"\n");
|
mOut.append(".parameter \"p").append(currParam++).append("\"\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (line2.startsWith("parameter")) {
|
||||||
|
mOut.append(line).append("\n");
|
||||||
|
currParam++;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
append(line);
|
append(line);
|
||||||
if (line2.equals("end method")) {
|
if (line2.equals("end method")) {
|
||||||
|
Loading…
Reference in New Issue
Block a user