mirror of
https://github.com/revanced/smali.git
synced 2025-05-22 19:08:52 +02:00
Fix potential formatting issue with local variable signatures in dump output
This commit is contained in:
parent
70c5b247e6
commit
8340ecf3d5
@ -63,7 +63,7 @@ public class DebugInfoItem {
|
|||||||
out.indent();
|
out.indent();
|
||||||
for (int i=0; i<parametersSize; i++) {
|
for (int i=0; i<parametersSize; i++) {
|
||||||
int paramaterIndex = reader.readSmallUleb128() - 1;
|
int paramaterIndex = reader.readSmallUleb128() - 1;
|
||||||
out.annotateTo(reader.getOffset(),
|
out.annotateTo(reader.getOffset(), "%s",
|
||||||
StringIdItem.getOptionalReferenceAnnotation(dexFile, paramaterIndex, true));
|
StringIdItem.getOptionalReferenceAnnotation(dexFile, paramaterIndex, true));
|
||||||
}
|
}
|
||||||
out.deindent();
|
out.deindent();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user