Age | Commit message (Collapse) | Author |
|
lombok’s log annotations.
|
|
|
|
|
|
|
|
This reverts commit 9ee2491427f1522a7689d1c28a816294bcff315b.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EqualsAndHashCode.
|
|
where you can include/exclude fields by annotating the fields.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
outer type is an interface, caused bugs in ecj.
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
recently, such as value and builder from experimental.
|
|
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!
|
|
and outer have generics fails if inner is annotated with @Data
|
|
|
|
* var is promoted to the main package.
* It is no longer an opt-in thing.
* bug: var (unlike val) is allowed in old-style for loops, but if you multi-init: for (var i = 0, j="Foo";;), you now get an error that you can't do that.
* tests both for the multi-for situation and the new main package variant.
|
|
|
|
|
|
|
|
rt.jar. Fortunately, we already had an optional ant task to fetch this. I’ve simply made it less optional.
|
|
|
|
fixes #1521
|
|
ConstructorProperties being default-off.
|
|
|
|
Several minor fixes to make 'ant test' work more reliably on other systems
|
|
|
|
Fixes #869, fixes #1018
|
|
|
|
|
|
extends Object
|