Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-27 | fixed generation problem caused by reusing expressions | Jan Rieke | |
2018-04-27 | no empty lines for expected test result | Jan Rieke | |
2018-04-27 | fixed javac tests (toString calls super now) | Jan Rieke | |
2018-04-22 | @SuperBuilder documentation for website | Jan Rieke | |
2018-04-21 | first try for Eclipse handler [WIP] | Jan Rieke | |
2018-04-16 | let @SuperBuilder's toString() call super.toString() | Jan Rieke | |
2018-04-16 | avoid name clashes with generics on the annotated class | Jan Rieke | |
2018-04-15 | added SuperBuilder with generics test case | Jan Rieke | |
2018-04-15 | use superclass generics for abstract builder class' extends clause | Jan Rieke | |
2018-04-15 | consider generics on the annotated class and potential superclass | Jan Rieke | |
2018-04-14 | revert changes to HandleBuilder (everything is in HandleSuperBuilder) | Jan Rieke | |
2018-04-14 | adjusted expected result of test case | Jan Rieke | |
2018-04-14 | include superclass when referring to parent builder | Jan Rieke | |
example: "ChildBuilder extends Parent.ParentBuilder" | |||
2018-04-10 | correct return type and statement for @Singular | Jan Rieke | |
2018-04-10 | @Override for overridden methods | Jan Rieke | |
2018-04-10 | apply generics on builder extends clause; fixed builder name generation | Jan Rieke | |
2018-04-06 | added author, (c) granted | Jan Rieke | |
2018-04-05 | build class names not configurable any more; removed toBuilder | Jan Rieke | |
2018-04-05 | wildcards for the constructor parameter | Jan Rieke | |
2018-04-05 | wildcards for the builder() method | Jan Rieke | |
2018-04-05 | more generics; return getInstance() instead of this | Jan Rieke | |
2018-04-05 | generics for the Builder class; generate abstract methods | Jan Rieke | |
2018-04-05 | add javac handler | Jan Rieke | |
Conflicts: src/core/lombok/experimental/SuperBuilder.java | |||
2018-04-04 | introduction of `@SuperBuilder` and a testcase. | Reinier Zwitserloot | |
2018-03-29 | [builderParentClass] test cases | Reinier Zwitserloot | |
2018-03-28 | [builderParentClass] Code to handle builder on enums removed; that doesn’t ↵ | Reinier Zwitserloot | |
make a heck of a lot of sense and enums aren’t extensible in the first place. Also fixed up a wrong access level; now all existing builder tests pass. | |||
2018-03-28 | Merge branch 'master' of https://github.com/janrieke/lombok into janrieke-master | Reinier Zwitserloot | |
Also fixed up style and docs, and updated behaviour when using `@Builder(inherit = true)` to error if you have no parent class. | |||
2018-03-27 | [trivial] eclipse patches are loaded from Class50 even if you override the ↵ | Reinier Zwitserloot | |
shadowloader classpath, but only if you have lombok.jar in there. This solves exotic problems if you try to add some features to lombok in a separate jar, and addresses issue #1523 | |||
2018-03-27 | fix javadoc warnings | Roel Spilker | |
2018-03-27 | Fixes #1608: give pages a title | Roel Spilker | |
2018-03-27 | Merge branch 'adding-java10-provision' of https://github.com/krzyk/lombok ↵ | Reinier Zwitserloot | |
into krzyk-adding-java10-provision | |||
2018-03-27 | [trivial] some memoryload improvements by not making a new instance but ↵ | Reinier Zwitserloot | |
using a cached one instead. Fixes issue #1579 | |||
2018-03-27 | Merge pull request #1583 from jramosf/master | Reinier Zwitserloot | |
#1579: recycle handlers to avoid excessive garbage collection | |||
2018-03-27 | Merge pull request #1622 from danieltaub96/master | Reinier Zwitserloot | |
fixed ExtensionMethod example to return T (generic type) | |||
2018-03-27 | Merge pull request #1589 from tmurakam/feature/1572-jdk10 | Reinier Zwitserloot | |
Add jdk-10.sh and update jdk-9.sh for docker | |||
2018-03-27 | Merge pull request #1620 from tmurakam/feautre/1572-intellij-jdk10 | Reinier Zwitserloot | |
[fix] Fix intellij build with jdk10 (#1572) | |||
2018-03-27 | [JDK10] Building lombok on JDK10 now works fine. | Reinier Zwitserloot | |
2018-03-27 | Fixes #1613: add support for STS4 | Roel Spilker | |
2018-03-27 | rt-openjdk6 is downloaded from the lombok site, we had a weird version up ↵ | Reinier Zwitserloot | |
there for a while that broke the build, we fixed it, but you won’t know until you do some fairly fancy cleaning (a complete re-clone or a distclean). Updated build script to scan for anything that isn’t the right version and re-download. | |||
2018-03-24 | improve compiler detection for jdk9 later. | Takuya Murakami | |
2018-03-22 | removed inet4 enforcement | Krzysztof Krason | |
2018-03-22 | using GA java 10 | Krzysztof Krason | |
2018-03-21 | fixed ExtensionMethod example to return T (generic type) , seem to remove or ↵ | Daniel | |
forgot for some reason... | |||
2018-03-21 | [fix] Fix intellij build with jdk10 (#1572) | Takuya Murakami | |
Add a JavaFileManager class name to KNOWN_JAVA9_FILE_MANAGERS. | |||
2018-03-20 | tests updated; a few tests were failing because we removed a few things ↵ | Reinier Zwitserloot | |
recently, such as value and builder from experimental. | |||
2018-03-20 | [issue #1615] fixes a bug where equals and hashcode would mess up if both ↵ | Reinier Zwitserloot | |
the outer and the inner class have generics, the inner is non-static, and you generate equals/hashcode on the inner. Note that in general this is just broken; do not put non-static inner classes in generics-carrying classes in the first place! | |||
2018-03-19 | [website] Added instruction page about VS Code support in lombok. Updated ↵ | Reinier Zwitserloot | |
upcoming talks section. | |||
2018-03-19 | Fresh builds wouldn’t work anymore due to a weird addition in ecj9. | Reinier Zwitserloot | |
2018-03-18 | [website] Some minor updates and fixes to the website order page. | Reinier Zwitserloot | |
2018-03-18 | Added test case for issue #1615: non-static inner classes where both inner ↵ | Reinier Zwitserloot | |
and outer have generics fails if inner is annotated with @Data |