diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-28 22:26:03 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-28 22:26:03 +0200 |
commit | 735b2cf1029baa985c61ecbc5aba0b081575aa70 (patch) | |
tree | 726f48c81f7895c55c8df38230414a25a9889e68 | |
parent | 7c7c1b2f68c540f9905919f9dc4bc311192049df (diff) | |
download | lombok-735b2cf1029baa985c61ecbc5aba0b081575aa70.tar.gz lombok-735b2cf1029baa985c61ecbc5aba0b081575aa70.tar.bz2 lombok-735b2cf1029baa985c61ecbc5aba0b081575aa70.zip |
trivial: minor stylistic update
-rw-r--r-- | src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java b/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java index 12202e27..5005752b 100644 --- a/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java +++ b/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java @@ -187,7 +187,7 @@ public class EclipseHandlerUtil { if (getter == null) { FieldDeclaration fieldDecl = (FieldDeclaration)field.get(); - FieldReference ref = new FieldReference(field.getName().toCharArray(), p); + FieldReference ref = new FieldReference(fieldDecl.name, p); if ((fieldDecl.modifiers & ClassFileConstants.AccStatic) != 0) { EclipseNode containerNode = field.up(); if (containerNode != null && containerNode.get() instanceof TypeDeclaration) { |