-
Create logger manually.
Replace getter and setter with changing accessibility of class fields
-
Steps to reproduce:
- start Eclipse with javac and the lombok agent
- create
```
package com.example;
import lombok.AllArgsConstructor;
import lombok.Data;
public class Main {
public void t…
-
`org.openrewrite.java.cleanup.ExplicitInitialization` and `org.openrewrite.java.cleanup.UseDiamondOperator` removes the argument type when it's a lombok.val variable.
`val products = new ArrayList(…
-
Rewrite lombok-generated code and get rid of lombok dependency.
-
Example project (reproduction): https://github.com/lwiddershoven/spring-boot-start-lombok-issue
# Problem
Lombok-generated methods are not found during maven compilation.
# Reproduction
A …
-
compilation of submodules with lombok based getter/setter/no arg constructor annotations failed./setter method compilation failures on eclipse 2024-09
the issue was fixed when the following was a…
-
For any simple getter that iff retrieves from a private field with the same bean style name as the getter remove the getter and replace with a `@Getter` attribute
https://projectlombok.org/features…
-
For any simple getter that iff sets a private field with the same bean style name as the getter remove the getter and replace with a @Setter attribute
https://projectlombok.org/features/GetterSette…
-
**Describe the bug**
I upgraded from 1.18.34 (which worked fine) to 1.18.36 and now I get the following error in eclipse (Version: 2024-09 (4.33.0)) with java version 21:
Lombok has logged too man…
-
### Expected Behavior
I'd like to use this configuration:
```groovy
micronaut {
runtime("tomcat")
testRuntime("junit5")
// ...
openapi {
client(file) {
// other config
…