提交 e250c731 编写于 作者: D Daniel Ramos

Fix issue with inner classes and empty package name.

上级 a9ae9716
......@@ -89,6 +89,10 @@ public final class ClassInfo {
int sep = clsName.lastIndexOf('$');
if (canBeInner && sep > 0 && sep != clsName.length() - 1) {
String parClsName = pkg + "." + clsName.substring(0, sep);
if(pkg.length() == 0) {
parClsName = clsName.substring(0, sep);
}
parentClass = fromName(dex, parClsName);
clsName = clsName.substring(sep + 1);
} else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册