Fix the output format for the .parameter directive

git-svn-id: https://smali.googlecode.com/svn/trunk@694 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2010-04-03 23:02:52 +00:00
parent c1cc0e0934
commit e861da1285

View File

@ -205,7 +205,7 @@ public class MethodDefinition {
writer.write(".parameter");
if (parameterName != null) {
writer.write('"');
writer.write(" \"");
writer.write(parameterName.getStringValue());
writer.write('"');
}