Skip to content
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

Detect and include inner classes #2

Open
FunnyMan3595 opened this issue May 17, 2012 · 0 comments
Open

Detect and include inner classes #2

FunnyMan3595 opened this issue May 17, 2012 · 0 comments

Comments

@FunnyMan3595
Copy link
Owner

Java supports inner classes, classes contained in other classes. For example:

OuterClass.java

public class OuterClass {
    public class InnerClass {
    }
}

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant