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/experimental | |
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/experimental')
-rw-r--r-- | src/core/lombok/experimental/Value.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lombok/experimental/Value.java b/src/core/lombok/experimental/Value.java index 6c07d2fc..048066df 100644 --- a/src/core/lombok/experimental/Value.java +++ b/src/core/lombok/experimental/Value.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 The Project Lombok Authors. + * Copyright (C) 2012-2013 The Project Lombok Authors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -29,7 +29,7 @@ import java.lang.annotation.Target; /** * Generates a lot of code which fits with a class that is a representation of an immutable entity. * <p> - * Equivalent to {@code @Getter @Wither @FieldDefaults(makeFinal=true, level=AccessLevel.PRIVATE) @RequiredArgsConstructor @ToString @EqualsAndHashCode}. + * Equivalent to {@code @Getter @FieldDefaults(makeFinal=true, level=AccessLevel.PRIVATE) @RequiredArgsConstructor @ToString @EqualsAndHashCode}. * <p> * Complete documentation is found at <a href="http://projectlombok.org/features/experimental/Value.html">the project lombok features page for @Value</a>. * |