diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-06-23 06:00:57 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-06-23 06:00:57 +0200 |
commit | 4ee8e7a3d2513420e0f7affcca61d916c2a7374b (patch) | |
tree | 46f47af6cef19fc85979fdd232b7686671550161 /src/lombok/eclipse | |
parent | 794801c3c9dc4f62906ac5d493b5e60473a91c47 (diff) | |
download | lombok-4ee8e7a3d2513420e0f7affcca61d916c2a7374b.tar.gz lombok-4ee8e7a3d2513420e0f7affcca61d916c2a7374b.tar.bz2 lombok-4ee8e7a3d2513420e0f7affcca61d916c2a7374b.zip |
Put the actual numeric value of ASTNode.Bit24 in a comment, but it was missing a 0!
Diffstat (limited to 'src/lombok/eclipse')
-rw-r--r-- | src/lombok/eclipse/TransformEclipseAST.java | 2 |
1 files changed, 1 insertions, 1 deletions
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: * - * <code>methodDeclaration.bits |= 0x80000;</code> + * <code>methodDeclaration.bits |= ASTNode.Bit24; //0x800000</code> * * @author rzwitserloot * @author rspilker |