diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-02-18 22:42:39 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-02-18 22:42:39 +0100 |
commit | 06537da4e0d1c420c6669f6ce1490ea56adc4d7d (patch) | |
tree | 261b27a692e598d434aae2f5efc3faa6998dcd4c /src/core/lombok/eclipse/handlers/HandleValue.java | |
parent | ed61012f95cefae8d03260f506ffe34bc19bd90c (diff) | |
download | lombok-06537da4e0d1c420c6669f6ce1490ea56adc4d7d.tar.gz lombok-06537da4e0d1c420c6669f6ce1490ea56adc4d7d.tar.bz2 lombok-06537da4e0d1c420c6669f6ce1490ea56adc4d7d.zip |
Changed @Value to no longer imply @Wither. Usually you want only
a few or no withers at all, and adding them is a lot simpler than
removing them. This is a breaking change, but then that's why @Value
was in experimental in the first place.
Diffstat (limited to 'src/core/lombok/eclipse/handlers/HandleValue.java')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleValue.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleValue.java b/src/core/lombok/eclipse/handlers/HandleValue.java index b74fbede..b69b1669 100644 --- a/src/core/lombok/eclipse/handlers/HandleValue.java +++ b/src/core/lombok/eclipse/handlers/HandleValue.java @@ -76,7 +76,6 @@ public class HandleValue extends EclipseAnnotationHandler<Value> { //and hitting 'find callers'. new HandleGetter().generateGetterForType(typeNode, annotationNode, AccessLevel.PUBLIC, true); - new HandleWither().generateWitherForType(typeNode, annotationNode, AccessLevel.PUBLIC, true); new HandleEqualsAndHashCode().generateEqualsAndHashCodeForType(typeNode, annotationNode); new HandleToString().generateToStringForType(typeNode, annotationNode); new HandleConstructor().generateAllArgsConstructor(typeNode, AccessLevel.PUBLIC, ann.staticConstructor(), true, Collections.<Annotation>emptyList(), ast); |