-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inner classes are missing #94
Comments
Most decompiler require direct access to the class files, so ECD has to extract the necessary classes. Inner classes are stored in separate class file(s) and if they are missing this may indicate that they had not been extracted and are thus not decompiled. If you have an example JAR file that contains a class where you miss the inner classes please check if e.g. standalone jd-gui shows the inner class. If it shows the inner class it would be nice of you if you could provide that Jar to me so I could check it in detail what is going wrong. |
I stumbled on ths issue because I am indeed seeing similar things. However, there are at least two different issues at hand, so let's make it more specific.
What I want, obviously, is to fix the first issue. If that works as expected, the second issue would never even seem like an issue. Extra points for decompiling the inner classes automatically when only the outer class is selected for the extraction. |
It is a bit of a mystery that noone has brought this up before... Regardless of which decompiler you chose, inner classes are always missing in the decompiled eclipse view. So are references to those, e.g. class attributes whose type is an inner class of another type.
The text was updated successfully, but these errors were encountered: