View | Details | Raw Unified | Return to bug 78740
Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/compiler/DocumentElementParser.java (-9 / +1 lines)
Lines 68-81 Link Here
68
	this.options = options;
68
	this.options = options;
69
	this.javadocParser.checkDocComment = false;
69
	this.javadocParser.checkDocComment = false;
70
}
70
}
71
72
/*
73
 *
74
 * INTERNAL USE-ONLY
75
 */
76
protected void adjustInterfaceModifiers() {
77
	intStack[intPtr - 2] |= AccInterface;
78
}
79
/*
71
/*
80
 * Will clear the comment stack when looking
72
 * Will clear the comment stack when looking
81
 * for a potential JavaDoc which might contain @deprecated.
73
 * for a potential JavaDoc which might contain @deprecated.
Lines 709-715 Link Here
709
	intPtr--;
701
	intPtr--;
710
	int declSourceStart = intStack[intPtr--];
702
	int declSourceStart = intStack[intPtr--];
711
	typeDecl.modifiersSourceStart = intStack[intPtr--];
703
	typeDecl.modifiersSourceStart = intStack[intPtr--];
712
	typeDecl.modifiers = intStack[intPtr--];
704
	typeDecl.modifiers = this.intStack[this.intPtr--] | AccInterface;
713
	if (typeDecl.declarationSourceStart > declSourceStart) {
705
	if (typeDecl.declarationSourceStart > declSourceStart) {
714
		typeDecl.declarationSourceStart = declSourceStart;
706
		typeDecl.declarationSourceStart = declSourceStart;
715
	}
707
	}

Return to bug 78740