fix(gui): fix search if class contains not generated inner class (#755)

This commit is contained in:
Skylot
2019-10-21 18:46:55 +01:00
parent 3249a5e0bc
commit f228a72118
@@ -325,6 +325,10 @@ public final class JadxDecompiler {
return javaClass;
}
}
// class or parent classes can be excluded from generation
if (cls.hasNotGeneratedParent()) {
return null;
}
throw new JadxRuntimeException("JavaClass not found by ClassNode: " + cls);
}