-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] @Builder with Javadoc causes error markers in Java editor with Eclipse 2024-09 (4.33.0) #3757
Comments
Also with:
|
Lombok version: 1.18.34 There is an error log in the eclipse background, which should be caused by the incompatibility of the new eclipse version. eclipse error log: org.eclipse.jdt.internal.core.CompilationUnit |
I'm joining the error club. Compilation works, but in editor I get red error marks on my builder calls. Spring Tool Suite 4 Lombok version: 1.18.34 How to reproduce: SearchReqOk.java
SearchReqDefective.java
UseBuilder.java
|
If you don't like this error, quick fix is to convert JavaDoc to a normal Java comment:
|
This issue is a duplicate of #3706 and already fixed. You can use the latest pipeline build until a new version gets release. |
Describe the bug
Since the upgrade to Eclipse 2024-09 (4.33) the
@Builder
annotation leads to error markers in the Java editor under special circumstances.To Reproduce
Create a simple maven project in Eclipse containing these two classes:
MyClass.java
MyClass2.java
The reference to builder() in MyClass2 is underlined red with the error message 'The method builder() is undefined for the type MyClass'
When I remove the Javadoc comment from
name
in MyClass, the error goes away.Expected behavior
There shouldn't be an error.
Version info (please complete the following information):
The text was updated successfully, but these errors were encountered: