-
Notifications
You must be signed in to change notification settings - Fork 234
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
Remove Class Name Prefix from Nested Classes #1980
Conversation
Signed-off-by: Vincent Biret <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While looking at this PR I've also realized that add inner class noops for a lot of languages so I've pushed a few commits.
In addition to Andrew's and I comments, can you please add a changelog entry?
Co-authored-by: Eastman <[email protected]>
Co-authored-by: Vincent Biret <[email protected]>
…-TestChange Java/request info instantiation test change
Just one last thing before we forget and I think it should be good |
Co-authored-by: Vincent Biret <[email protected]>
Co-authored-by: Vincent Biret <[email protected]>
Kudos, SonarCloud Quality Gate passed! |
Addresses the long nested-class name issue detailed in #1949
Removes instances of anonymous classes. This was done to address the issue of having too many classes at compile time, this was causing the daemons to suddenly disappear due to an overload of heap memory. Removing our uses of anonymous classes prevents this and reduces our file count size at compile time by over 50% for both v1 and beta libraries.