aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValuePlain.java
AgeCommit message (Collapse)Author
2018-06-04Make `extraPrivate` opt-in instead of opt-out. Fixes #1708Roel Spilker
2018-05-28Generate default no-args constructorRoel Spilker
2017-12-04fixing tests to account for generation of javax.annotation.Generated and ↵Reinier Zwitserloot
ConstructorProperties being default-off.
2017-02-09[i1014] Only add lombok.Generated if it is explicitly turned onRoel Spilker
2017-01-06add `@lombok.Generated` to generated classes, methods and fieldsRoel Spilker
2015-11-16The bulk of the effort for a new pretty printer.Reinier Zwitserloot
2015-06-25The hashCode() method now generates a magic prime instead of 0 for the hash ↵Reinier Zwitserloot
of null values; this reduces collisions.
2015-01-30[i623] added eclipse code for generating @javax.annotation.Generated, and ↵Reinier Zwitserloot
refactored java impl to reduce DRY violations. -f pretty now includes skipping generation of this annotation, and updated ALL the test cases.
2014-03-26[i660] canEqual is now protected instead of public.Roel Spilker
Also fixed the total lack of canEqual in the usage examples.
2014-01-19Issue 625: use (even) better primes for hashcodesRoel Spilker
2014-01-09[#625] Instead of '31' as a prime number for hashCode(), use something else. ↵Reinier Zwitserloot
31, probably owing to its inclusion in Effective Java, is overused, as proven by Maaartinus in issue 625. Switching to 277 instead. Also, 1231/1237 pair used for booleans has been replaced by 2591/2609.
2013-02-18Changed @Value to no longer imply @Wither. Usually you want onlyReinier Zwitserloot
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.
2012-08-10Added tests for @FieldDefaults and @Value.Reinier Zwitserloot