Index: model/org/eclipse/jdt/internal/compiler/DocumentElementParser.java =================================================================== RCS file: /home/eclipse/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/compiler/DocumentElementParser.java,v retrieving revision 1.7 diff -u -r1.7 DocumentElementParser.java --- model/org/eclipse/jdt/internal/compiler/DocumentElementParser.java 15 Oct 2004 20:31:44 -0000 1.7 +++ model/org/eclipse/jdt/internal/compiler/DocumentElementParser.java 16 Nov 2004 22:36:46 -0000 @@ -68,14 +68,6 @@ this.options = options; this.javadocParser.checkDocComment = false; } - -/* - * - * INTERNAL USE-ONLY - */ -protected void adjustInterfaceModifiers() { - intStack[intPtr - 2] |= AccInterface; -} /* * Will clear the comment stack when looking * for a potential JavaDoc which might contain @deprecated. @@ -709,7 +701,7 @@ intPtr--; int declSourceStart = intStack[intPtr--]; typeDecl.modifiersSourceStart = intStack[intPtr--]; - typeDecl.modifiers = intStack[intPtr--]; + typeDecl.modifiers = this.intStack[this.intPtr--] | AccInterface; if (typeDecl.declarationSourceStart > declSourceStart) { typeDecl.declarationSourceStart = declSourceStart; }