diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTForStatement.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTForStatement.java index 4b4634c6251..e6bcf447a89 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTForStatement.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTForStatement.java @@ -6,7 +6,7 @@ * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Doug Schaefer (IBM) - Initial API and implementation + * Doug Schaefer (IBM) - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.core.dom.ast; @@ -18,7 +18,6 @@ package org.eclipse.cdt.core.dom.ast; * @noimplement This interface is not intended to be implemented by clients. */ public interface IASTForStatement extends IASTStatement { - /** * CONDITION represents the relationship between a * IASTForStatement and its IASTExpression @@ -40,7 +39,8 @@ public interface IASTForStatement extends IASTStatement { * IASTForStatement and its IASTStatement * body. */ - public static final ASTNodeProperty BODY = new ASTNodeProperty("IASTForStatement.BODY - IASTStatement body of IASTForStatement"); //$NON-NLS-1$ + public static final ASTNodeProperty BODY = new ASTNodeProperty( + "IASTForStatement.BODY - IASTStatement body of IASTForStatement"); //$NON-NLS-1$ /** * INITIALIZER represents the relationship between a