You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling this produces two .class files, OuterClass.class and OuterClass$InnerClass.class . Right now, mcp_rebuild will only package OuterClass.class, as it fails to detect the inner class for inclusion.
This is not really a priority. As far as I'm aware, all uses of inner classes can be eliminated by promoting the inner class to a regular class. Still, it would be a nice enhancement to have.
The text was updated successfully, but these errors were encountered:
Java supports inner classes, classes contained in other classes. For example:
OuterClass.java
Compiling this produces two .class files, OuterClass.class and OuterClass$InnerClass.class . Right now, mcp_rebuild will only package OuterClass.class, as it fails to detect the inner class for inclusion.
This is not really a priority. As far as I'm aware, all uses of inner classes can be eliminated by promoting the inner class to a regular class. Still, it would be a nice enhancement to have.
The text was updated successfully, but these errors were encountered: