aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok
AgeCommit message (Collapse)Author
2018-08-21bugfix for the new ‘find the next priority’ system committed earlier; it ↵Reinier Zwitserloot
should also find next priority for the astvisitors (only the annotation visitors were being considered).
2018-08-20use delared ast Type instead of generic one saves a lot of "checkcasts" in ↵Roland Praml
the byte code
2018-08-20[fixes #1813] erroneous message on eclipse that lombok ‘can’t get the ↵Reinier Zwitserloot
delegate of the gradle IncrementalProcessingEnvironment’.
2018-08-20[fixes #1759] ‘flag usage’ check on builder for eclipseJan Rieke
2018-08-20replace Collection<FieldAccess> by FieldAccess[] array (saves iterator instance)Roland Praml
2018-08-20FIX: omit warning "Can't get the delegate of the gradle ↵Roland Praml
IncrementalProcessingEnvironment." in eclipse build.
2018-08-20Do not use reflection to check if annotation is presentRoland Praml
2018-08-20using map.get instead of searching for entryRoland Praml
2018-08-20reduced calls of traverse invocationsRoland Praml
2018-07-29Printing missing gradle integration would print for any non-javac, ↵Reinier Zwitserloot
non-gradle compiler. Fixed that.
2018-07-29A few upgrades for the printers used with @lombok.core.PrintAST.Reinier Zwitserloot
2018-07-29code impl of FieldNameConstants rewrite + test updates for itReinier Zwitserloot
2018-07-26post-release version bumpReinier Zwitserloot
2018-07-26pre-release version bumpReinier Zwitserloot
2018-07-25Added key ‘dangerousconfig.lombok.disable’.Reinier Zwitserloot
2018-07-25[fixes issue #1759] We removed the ‘flag usage’ check on builder instead ↵Reinier Zwitserloot
of replacing it with the non-experimental check about 3 years ago when builder moved out of experimental. The check has now been restored.
2018-07-20Replaced StringBuilder by simple char array in "hotspot" methodRoland Praml
2018-07-03[issue #1347] When lombok generates constructors, it should call the ↵Reinier Zwitserloot
`@Builder.Default` static method instead of initializing to null/0/false. This does that, for ecj.
2018-07-03[issue #1347] When lombok generates constructors, it should call the ↵Reinier Zwitserloot
`@Builder.Default` static method instead of initializing to null/0/false. This does that, for javac.
2018-06-18Transient fields should by default be excluded from equals and hashCode. ↵Roel Spilker
Fixes #1724
2018-06-13Merge branch 'janrieke-superBuilder'Reinier Zwitserloot
2018-06-13[SuperBuilder] code review, style update, making it JDK1.6 compatible, ↵Reinier Zwitserloot
documentation review, bugfix for setter auto-presuming chaining even when you didn’t configure it to chain.
2018-06-13forgot to update Version.java in the post-release version bump.Reinier Zwitserloot
2018-06-07Also generify AnnotationProcessor logicmszabo-wikia
2018-06-07Generify logic to obtain JavacFiler and JavacProcessingEnvironmentmszabo-wikia
2018-06-06Fix #1716: Update for Gradle incremental compilation API change in Gradle ↵mszabo-wikia
4.8 and above
2018-06-05pre-release version bumpReinier Zwitserloot
2018-06-04`@NonNull` now uses a slightly longer exception message.Reinier Zwitserloot
2018-06-04Merge pull request #1698 from hubrick/feature/explicit-npe-messageReinier Zwitserloot
Make the null check exception a little bit more explicit
2018-06-04Make `extraPrivate` opt-in instead of opt-out. Fixes #1708Roel Spilker
2018-06-04FieldNameConstants now defaults to having a prefix ‘FIELD_’, which can ↵Reinier Zwitserloot
be configured both on the annotation itself and via a config key. This totally breaks compatibility with the previous lombok release, but, hey, it’s in experimental and it’s been one week. This is better.
2018-06-04Do not generate a private no-args constructor if:Roel Spilker
- The class has a parent class - There is an explicit XxxArgsConstructor annotation that would generate a no-args constructor Fixes #1703, fixes #1704, fixes #1712
2018-06-04Fixex #1697: google’s FluentLogger (Flogger) now available as one of ↵Reinier Zwitserloot
lombok’s log annotations.
2018-06-04fixes #1709 – boolean properties in lombok annotations, such as ↵Reinier Zwitserloot
onlyExplicitlyIncluded, didn’t work.
2018-06-04SuperBuilder support for abstract classesJan Rieke
2018-06-01reverted unnecessary import reorderingJan Rieke
2018-06-01support @Builder.DefaultJan Rieke
2018-06-01handle experimental flag usageJan Rieke
2018-05-31ecj: generate default constructor for builder classesJan Rieke
2018-05-31Revert "ecj: SuperBuilderBasic test passes (removed superconstructor calls)"Jan Rieke
This reverts commit 9ee2491427f1522a7689d1c28a816294bcff315b.
2018-05-31second generics test caseJan Rieke
2018-05-31ecj: reordering of methodsJan Rieke
2018-05-31javac: delete @SuperBuilder when processing itJan Rieke
2018-05-30no custom builders allowed, so there cannot be a toString() methodJan Rieke
2018-05-30code formatting, reordering, rename etc.Jan Rieke
2018-05-30fixed compiler errors in antJan Rieke
2018-05-30ecj: fixed compiler errors after revert of HandleBuilderJan Rieke
2018-05-30ecj: revert changes to HandleBuilder (everything in HandleSuperBuilder)Jan Rieke
2018-05-30ecj: no empty <> if there are no type paramsJan Rieke
2018-05-30ecj: type parameters for methods and constructor paramJan Rieke