< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassWriter.java

Print this page

        

*** 1876,1886 **** poolbuf.appendChar(target.minorVersion); poolbuf.appendChar(target.majorVersion); // TODO: Need to skip this for Modules - not sure where // that check really belongs, but this works. ! if (target.hasNestmates()) { acount += writeNestMembersIfNeeded(c); acount += writeMemberOfNestIfNeeded(c); } } --- 1876,1886 ---- poolbuf.appendChar(target.minorVersion); poolbuf.appendChar(target.majorVersion); // TODO: Need to skip this for Modules - not sure where // that check really belongs, but this works. ! if (target.hasNestmateAccess()) { acount += writeNestMembersIfNeeded(c); acount += writeMemberOfNestIfNeeded(c); } }
< prev index next >