File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/main/java/org/apache/bcel/verifier/statics Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -665,7 +665,7 @@ public void visitInnerClasses(final InnerClasses innerClasses) { // vmspec2 4.7.
665
665
checkIndex (innerClasses , innernameIdx , CONST_Utf8 );
666
666
}
667
667
int acc = ic .getInnerAccessFlags ();
668
- acc = acc & ~(Const .ACC_PUBLIC | Const .ACC_PRIVATE | Const .ACC_PROTECTED | Const .ACC_STATIC | Const .ACC_FINAL | Const .ACC_INTERFACE |
668
+ acc &= ~(Const .ACC_PUBLIC | Const .ACC_PRIVATE | Const .ACC_PROTECTED | Const .ACC_STATIC | Const .ACC_FINAL | Const .ACC_INTERFACE |
669
669
Const .ACC_ABSTRACT );
670
670
if (acc != 0 ) {
671
671
addMessage ("Unknown access flag for inner class '" + tostring (ic ) + "' set (InnerClasses attribute '" + tostring (innerClasses ) + "')." );
You can’t perform that action at this time.
0 commit comments