Commit e250c731 authored by Daniel Ramos's avatar Daniel Ramos

Fix issue with inner classes and empty package name.

parent 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% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment