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

(-)compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java (-1 / +1 lines)
Lines 3122-3129 Link Here
3122
			// Store javadoc only on first declaration as it is the same for all ones
3122
			// Store javadoc only on first declaration as it is the same for all ones
3123
			FieldDeclaration fieldDeclaration = (FieldDeclaration) declaration;
3123
			FieldDeclaration fieldDeclaration = (FieldDeclaration) declaration;
3124
			fieldDeclaration.javadoc = this.javadoc;
3124
			fieldDeclaration.javadoc = this.javadoc;
3125
			this.javadoc = null;
3126
		}
3125
		}
3126
		this.javadoc = null;
3127
	} else {
3127
	} else {
3128
		type = (TypeReference) this.astStack[this.astPtr - variableIndex];
3128
		type = (TypeReference) this.astStack[this.astPtr - variableIndex];
3129
		typeDim = type.dimensions();
3129
		typeDim = type.dimensions();

Return to bug 243715