mirror of
https://github.com/revanced/smali.git
synced 2025-05-03 08:04:28 +02:00
Fix how parameter annotations are written in baksmali
This commit is contained in:
parent
34cc1b7b82
commit
db81d89c2a
@ -231,13 +231,12 @@ public class MethodDefinition {
|
|||||||
}
|
}
|
||||||
writer.write(" # ");
|
writer.write(" # ");
|
||||||
writer.write(parameterType);
|
writer.write(parameterType);
|
||||||
|
writer.write("\n");
|
||||||
if (annotations.size() > 0) {
|
if (annotations.size() > 0) {
|
||||||
writer.indent(4);
|
writer.indent(4);
|
||||||
AnnotationFormatter.writeTo(writer, annotations);
|
AnnotationFormatter.writeTo(writer, annotations);
|
||||||
writer.deindent(4);
|
writer.deindent(4);
|
||||||
writer.write(".end param\n");
|
writer.write(".end param\n");
|
||||||
} else {
|
|
||||||
writer.write("\n");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user