View | Details | Raw Unified | Return to bug 99507 | Differences between
and this patch

Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java (-1 / +1 lines)
Lines 853-859 Link Here
853
		// Report problem
853
		// Report problem
854
		this.currentTokenType = -1;
854
		this.currentTokenType = -1;
855
		end = hasMultiLines ? this.lineEnd: this.scanner.getCurrentTokenEndPosition();
855
		end = hasMultiLines ? this.lineEnd: this.scanner.getCurrentTokenEndPosition();
856
		while (readToken() != TerminalTokens.TokenNameWHITESPACE) {
856
		while ((token=readToken()) != TerminalTokens.TokenNameWHITESPACE && token != TerminalTokens.TokenNameEOF) {
857
			this.currentTokenType = -1;
857
			this.currentTokenType = -1;
858
			end = hasMultiLines ? this.lineEnd: this.scanner.getCurrentTokenEndPosition();
858
			end = hasMultiLines ? this.lineEnd: this.scanner.getCurrentTokenEndPosition();
859
		}
859
		}

Return to bug 99507