Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-06 | ecj: builder generics [WIP] | Jan Rieke | |
2018-05-03 | Allow gradle incremental compiling with lombok in annotation processor path | Pascal Bihler | |
Fixes issue #1580 | |||
2018-04-27 | fixed generation problem caused by reusing expressions | Jan Rieke | |
2018-04-23 | Allow onMethod and onParam in @Getter and @Setter if it is put on a type | Roel Spilker | |
2018-04-23 | [bugfix] generics on inner classes whose outer type has generics, when the ↵ | Reinier Zwitserloot | |
outer type is an interface, caused bugs in ecj. | |||
2018-04-23 | [bugfix] onMethod_ in javac was broken; javac would throw an ↵ | Reinier Zwitserloot | |
IllegalArgumentException. | |||
2018-04-23 | move javadoc to public method | Roel Spilker | |
2018-04-23 | Merge pull request #1670 from kdaemonv/hotfix-1 | Reinier Zwitserloot | |
Revert some changes from f540335 which break the build | |||
2018-04-23 | fix typo in EclipseProductLocationProvider.java | kdaemonv | |
change NotAnIdeLocationException to CorruptedIdeLocationException in javadoc for private method create0(String path) | |||
2018-04-21 | first try for Eclipse handler [WIP] | Jan Rieke | |
2018-04-20 | move ClassLiteral and FieldSelect from ↵ | Dmitry Kurelchuk | |
core/lombok/core/AnnotationValues.java to utils/lombok/core/ | |||
2018-04-17 | [Fixes #1656] Lombok would silently do the wrong thing when using references ↵ | Reinier Zwitserloot | |
to `public static final String` fields, instead of actual string literals, there where you can specify strings in lombok annotation parameters, such as `@ToString(of = MyClass.CONSTANT_FIELD)`. We can’t really fix it, but at least now lombok will error when you do that and describe in detail what’s going wrong. | |||
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-17 | fix #1657: EmptyLombokFileObject: file:// URI must not contain authority part. | Takuya Murakami | |
fix degrade of #1617, the file URI must starts with 'file:///', not 'file://'. | |||
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-10 | [delombok] Added an option to emit only changed files. | Reinier Zwitserloot | |
2018-04-10 | Potential fix for #1604 | Roel Spilker | |
2018-04-10 | Merge pull request #886 from balta3/annotationarrays | Reinier Zwitserloot | |
implemented support for annotation arrays as annotation attributes in javac | |||
2018-04-09 | Update delombok cmd example. Fixes #1643 | Roel Spilker | |
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-05 | Merge branch 'cheelio-FieldNameConstants' | Reinier Zwitserloot | |
2018-04-05 | [fieldNameConstants] code review, docs, tests, fixup. | Reinier Zwitserloot | |
2018-04-04 | Merge branch 'FieldNameConstants' of https://github.com/cheelio/lombok into ↵ | Reinier Zwitserloot | |
cheelio-FieldNameConstants | |||
2018-04-04 | Merge pull request #1626 from victorwss/master | Reinier Zwitserloot | |
Fix for #1617. | |||
2018-04-04 | Merge pull request #1627 from nuessgens/master | Reinier Zwitserloot | |
Partially fix for "A save participant caused problems" with Eclipse | |||
2018-04-04 | Merge pull request #1639 from tmurakam/feature/1632-jdk11 | Reinier Zwitserloot | |
fix #1632: JavacAST: use new Log method for jdk11 | |||
2018-04-04 | introduction of `@SuperBuilder` and a testcase. | Reinier Zwitserloot | |
2018-03-31 | fix #1632: JavacAST: use new Log method for jdk11 | Takuya Murakami | |
Some methods of AbstractLog are removed in jdk11. Fix JavacAST.Jdk9Plus to use new log methods added from jdk9. | |||
2018-03-29 | [trivial] build script fix for website-only: It was adding an & to the ↵ | Reinier Zwitserloot | |
full version string every call. | |||
2018-03-28 | Merge remote-tracking branch 'remotes/upstream/master' | Christian Nüssgens | |
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 | [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 #1620 from tmurakam/feautre/1572-intellij-jdk10 | Reinier Zwitserloot | |
[fix] Fix intellij build with jdk10 (#1572) |