You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This also fails if you try to call the extension method by hand because the method is ambiguous. The loop happens because lombok is unable to find a matching method, it simply picks the first method that has the same name and a matching first parameter.
For eclipse it also checks the argument types and add an error message if it does not match. It does not try to find a better match. In javac this will usually work as long as both extension methods are in the same class because it runs before the compiler resolves the methods. If the right method is in a different class it will still fail.
Describe the bug
When i try to compile the following code i get an infinite build loop.
Looks like this in the build console:
To Reproduce
Try to compile this code:
After pasting the code it compiles a single time correct.
You have to make a change in the file an safe
Expected behavior
No endless loops
Version info:
The text was updated successfully, but these errors were encountered: