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

(-)src/org/eclipse/wst/jsdt/internal/compiler/parser/JavadocParser.java (-1 / +1 lines)
Lines 762-768 Link Here
762
762
763
	private boolean parseExtends() throws InvalidInputException {
763
	private boolean parseExtends() throws InvalidInputException {
764
		this.extendsType=(TypeReference)parseQualifiedName(true);
764
		this.extendsType=(TypeReference)parseQualifiedName(true);
765
		return this.namespace!=null;
765
		return this.extendsType!=null;
766
	}
766
	}
767
767
768
	private boolean parseType() throws InvalidInputException {
768
	private boolean parseType() throws InvalidInputException {

Return to bug 244411