Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorSergey Prigogin2012-08-20 01:02:34 +0000
committerSergey Prigogin2012-08-20 02:14:01 +0000
commit8ffcaab51b1e2049ce4fd5fc75e677eaec787068 (patch)
tree6f77c18e300c4927a9dcf166853dc5f296012bf1 /core
parent99590ef0892e005f3e89a3ce9bacd0ab37c37305 (diff)
downloadorg.eclipse.cdt-8ffcaab51b1e2049ce4fd5fc75e677eaec787068.tar.gz
org.eclipse.cdt-8ffcaab51b1e2049ce4fd5fc75e677eaec787068.tar.xz
org.eclipse.cdt-8ffcaab51b1e2049ce4fd5fc75e677eaec787068.zip
Cosmetics.
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTForStatement.java6
1 files 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 {
-
/**
* <code>CONDITION</code> represents the relationship between a
* <code>IASTForStatement</code> and its <code>IASTExpression</code>
@@ -40,7 +39,8 @@ public interface IASTForStatement extends IASTStatement {
* <code>IASTForStatement</code> and its <code>IASTStatement</code>
* 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$
/**
* <code>INITIALIZER</code> represents the relationship between a

Back to the top