Github user shils commented on a diff in the pull request:
https://github.com/apache/groovy/pull/648#discussion_r158607705
--- Diff: src/main/java/org/codehaus/groovy/classgen/AsmClassGenerator.java
---
@@ -305,11 +305,6 @@ private void makeInnerClassEntry(ClassNode cn) {
}
int mods = adjustedClassModifiersForInnerClassTable(cn);
-
- if (Modifier.isPrivate(mods)) {
--- End diff --
I'm unsure about removing this block as the commit message suggests it was
necessary for android support. Does anyone know the history behind this? @melix
---