From 8ffcaab51b1e2049ce4fd5fc75e677eaec787068 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Sun, 19 Aug 2012 18:02:34 -0700 Subject: [PATCH] Cosmetics. --- .../org/eclipse/cdt/core/dom/ast/IASTForStatement.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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