From 4ee8e7a3d2513420e0f7affcca61d916c2a7374b Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 23 Jun 2009 06:00:57 +0200 Subject: Put the actual numeric value of ASTNode.Bit24 in a comment, but it was missing a 0! --- src/lombok/eclipse/TransformEclipseAST.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lombok/eclipse/TransformEclipseAST.java b/src/lombok/eclipse/TransformEclipseAST.java index ccb29a8c..a43be699 100644 --- a/src/lombok/eclipse/TransformEclipseAST.java +++ b/src/lombok/eclipse/TransformEclipseAST.java @@ -21,7 +21,7 @@ import org.eclipse.jdt.internal.compiler.parser.Parser; * Note that, for any Method body, if Bit24 is set, the eclipse parser has been patched to never attempt to * (re)parse it. You should set Bit24 on any MethodDeclaration object you inject into the AST: * - * methodDeclaration.bits |= 0x80000; + * methodDeclaration.bits |= ASTNode.Bit24; //0x800000 * * @author rzwitserloot * @author rspilker -- cgit