Merge "Layoutlib_create: fix binary name of delegate methods."

This commit is contained in:
Xavier Ducrohet
2010-10-22 15:42:26 -07:00
committed by Android (Google) Code Review

View File

@@ -96,6 +96,7 @@ public class AsmGenerator {
methods.add(methodName);
}
for (String className : createInfo.getDelegateClassNatives()) {
className = binaryToInternalClassName(className);
Set<String> methods = mDelegateMethods.get(className);
if (methods == null) {
methods = new HashSet<String>();