Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-16 | Merge pull request #2840 from Rawi01/copy-vartype | Reinier Zwitserloot | |
Also copy vartype.type in TreeMirrorMaker | |||
2021-09-16 | Merge pull request #2930 from Rawi01/eclipse-final-save-action | Reinier Zwitserloot | |
Fix "Use modifier 'final' where possible" cleanup | |||
2021-09-15 | [fixes #2960] [installer] Fix issue with weird chars in eclipse path | Reinier Zwitserloot | |
Lombok used to attempt to escape 'weird' chars (using a whitelist of chars that need no escaping) when writing out eclipse.ini. However, there _is no_ escaping mechanism available there. Instead, apparently eclipse/java just reads the chars appearing after the `-javaagent:` prefix as literally as possible. Therefore, just.. don't escape, and pray. Spaces, colons, and ats have all been confirmed as working correctly when rendering them literally, and as failing when you attempt to escape them. | |||
2021-09-15 | [trivial] remove unused import | Reinier Zwitserloot | |
2021-09-07 | [changelog] add previous commit (val to final var) to changelog | Reinier Zwitserloot | |
2021-09-06 | Replace val with native final var in Java >= 10 | Rawi01 | |
2021-08-15 | [fixes #2926] WrittenNamesFinder can now detect generated writes | Rawi01 | |
2021-06-10 | Improve Builder documentation to emphasize the "builder()" factory method. ↵ | Roel Spilker | |
Fixes #2870 | |||
2021-06-10 | SneakyThrows.java fix typo - return String instead void | Roman Ivanov | |
2021-06-04 | Followup build fix related to commit 17ac9e77a5 | Reinier Zwitserloot | |
That commit added a stub for com.sun.tools.javac.comp.ArgumentAttr: When compiling against stubstubs, the requisite JCTree.Visitor nested class doesn't exist; added this to the existing JCTree stubs-for-the-stubs | |||
2021-06-04 | Merge pull request #2822 from FlorentMouysset/master | Reinier Zwitserloot | |
Fix @CustomLog-key in lombok.config for some error messages. Issue #2821 | |||
2021-06-04 | Merge pull request #2816 from Rawi01/val-switch-expression | Reinier Zwitserloot | |
Resolve variables in switch expressions | |||
2021-06-03 | Merge pull request #2815 from Rawi01/var-val-cache | Reinier Zwitserloot | |
Cleanup internal argument cache | |||
2021-05-14 | Copy reference types properly | Rawi01 | |
2021-05-12 | [fixes #2420] Copy vartype.type | Rawi01 | |
2021-04-27 | Fix @CustomLog-key in lombok.config for some error messages. Issue #2821 | MOUYSSET Florent | |
2021-04-23 | Change owner lombok GitHub repository | Roel Spilker | |
2021-04-22 | [fixes #2624] Resolve variables in switch expressions | Rawi01 | |
2021-04-18 | [fixes #2460][fixes #2462] Cleanup internal argument cache | Rawi01 | |
2021-04-18 | Merge pull request #2811 from Rawi01/eclipse-java-16-inaccessible | Reinier Zwitserloot | |
Use MethodHandler instead of reflective defineClass | |||
2021-04-18 | Merge pull request #2809 from Rawi01/eclipse-javadoc-performance | Reinier Zwitserloot | |
Avoid reading file from disk by reusing the parser source | |||
2021-04-18 | [records] [@NonNull] slight refactor to ensure any generated canonical ↵ | Reinier Zwitserloot | |
constructor is visible to downstream APs We used to remove the canonical constructor on a record that javac generates, and replace it with our own, as we put null checks in it. However, the type mirrors and such Annotation Processors use already have the implicit canonical constructor available. Instead of trying to remove those, let's just take the existing implicit constructor and add to that (and mark it explicit, of course). | |||
2021-04-18 | [StandardExceptions] fix for javac | Reinier Zwitserloot | |
2021-04-18 | [review] Use javac's internals to update type mirrors | Reinier Zwitserloot | |
This should help with making any annotation processors that run after lombok to 'see' the changes lombok caused properly. | |||
2021-04-18 | Merge branch 'enter-types-methods-fields' of git://github.com/Rawi01/lombok ↵ | Reinier Zwitserloot | |
into Rawi01-enter-types-methods-fields | |||
2021-04-18 | [StandardException] generate an error if the annotation is on a class that ↵ | Reinier Zwitserloot | |
extends nothing. | |||
2021-04-16 | [trivial] | Reinier Zwitserloot | |
2021-04-16 | [pr 2702] finishing the `@StandardException` feature. | Reinier Zwitserloot | |
* rewritten how it works a bit: Now compatible with parent exceptions that don't have the Throwable variants. * rewritten how it works a bit: You can now provide the full constructor only; the rest will forward to it. * fixing up style. * rewrite the docs. | |||
2021-04-16 | Merge branch 'standard-exception' of git://github.com/ttzn/lombok into ↵ | Reinier Zwitserloot | |
ttzn-standard-exception | |||
2021-04-11 | [fixes #2810] Use MethodHandler instead of reflective defineClass | Rawi01 | |
2021-04-06 | Avoid reading file from disk by reusing the parser source | Rawi01 | |
2021-04-02 | [website] fixing buildgen of all-versions.html | Reinier Zwitserloot | |
2021-04-02 | [versioning] post-release version bump | Reinier Zwitserloot | |
2021-04-02 | [versioning] pre-release version bump | Reinier Zwitserloot | |
2021-04-02 | [build] fix the website maker's all-versions tool | Reinier Zwitserloot | |
2021-04-02 | Fixes #2803 Manual merge, hide generated code from some Eclipse refactorings | Roel Spilker | |
2021-04-01 | [docker] upgrade gradle (no jdk16 support yet) | Roel Spilker | |
2021-04-01 | [docker] update maven | Roel Spilker | |
2021-04-01 | [docker] upgrade ant | Roel Spilker | |
2021-04-01 | [record] Print compact constructor after class name | Rawi01 | |
2021-04-01 | [fixes #2787] Handle right hand side of assignment first | Rawi01 | |
2021-03-26 | Merge pull request #2793 from Rawi01/license | Reinier Zwitserloot | |
Add licenses of embedded dependencies | |||
2021-03-25 | Add licenses of embedded dependencies | Rawi01 | |
2021-03-24 | @StandardException feature working draft | ttzn | |
* move feature under experimental * replace ProviderFor with Provides * add doc material (to be completed) * add author | |||
2021-03-24 | @StandardException feature working draft | ttzn | |
* annotation with javac and Eclipse handlers * single test file | |||
2021-03-24 | Merge pull request #2687 from janrieke/superBuilderConfigBuilderClassName | Reinier Zwitserloot | |
SuperBuilder: consider lombok.builder.className for builder extends clause | |||
2021-03-24 | [records] [`@NonNull`] eclipse impl onfthe `@NonNull` on record components ↵ | Reinier Zwitserloot | |
feature. All tests passing. | |||
2021-03-23 | [testing] wahey, ecj testing works again, and now we can test JDK16 features ↵ | Reinier Zwitserloot | |
in it! | |||
2021-03-23 | [records] [javac] Putting `@NonNull` on a 'field' of a record now affects ↵ | Reinier Zwitserloot | |
the compact constructors, generating one if need be. | |||
2021-03-23 | [delombok] [prettyprinter] add support for the compact record constructor | Reinier Zwitserloot | |