Fix the missing return type for method references

This commit is contained in:
Ben Gruver 2012-10-23 20:56:57 -07:00
parent d23b567c2b
commit 0033480503

View File

@ -279,6 +279,7 @@ public class DexBuffer {
}
sb.append(")");
sb.append(returnType);
return sb.toString();
}