diff options
author | Roel Spilker <r.spilker@gmail.com> | 2018-04-23 21:00:01 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2018-04-23 23:26:51 +0200 |
commit | b081e6c968817fe5df57b359ad04fc3f4580d38c (patch) | |
tree | c06d330da2236019197617befa4e73622644e02e /src/core/lombok/eclipse/handlers/HandleData.java | |
parent | a27826b268c28a7aa1596bb07461ab1cfb113d82 (diff) | |
download | lombok-b081e6c968817fe5df57b359ad04fc3f4580d38c.tar.gz lombok-b081e6c968817fe5df57b359ad04fc3f4580d38c.tar.bz2 lombok-b081e6c968817fe5df57b359ad04fc3f4580d38c.zip |
Allow onMethod and onParam in @Getter and @Setter if it is put on a type
Diffstat (limited to 'src/core/lombok/eclipse/handlers/HandleData.java')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleData.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleData.java b/src/core/lombok/eclipse/handlers/HandleData.java index 025ceefd..5d92cd36 100644 --- a/src/core/lombok/eclipse/handlers/HandleData.java +++ b/src/core/lombok/eclipse/handlers/HandleData.java @@ -72,8 +72,8 @@ public class HandleData extends EclipseAnnotationHandler<Data> { //for whatever reason, though you can find callers of that one by focusing on the class name itself //and hitting 'find callers'. - handleGetter.generateGetterForType(typeNode, annotationNode, AccessLevel.PUBLIC, true); - handleSetter.generateSetterForType(typeNode, annotationNode, AccessLevel.PUBLIC, true); + handleGetter.generateGetterForType(typeNode, annotationNode, AccessLevel.PUBLIC, true, Collections.<Annotation>emptyList()); + handleSetter.generateSetterForType(typeNode, annotationNode, AccessLevel.PUBLIC, true, Collections.<Annotation>emptyList(), Collections.<Annotation>emptyList()); handleEqualsAndHashCode.generateEqualsAndHashCodeForType(typeNode, annotationNode); handleToString.generateToStringForType(typeNode, annotationNode); handleConstructor.generateRequiredArgsConstructor( |