We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I have a problem with delombok and an inline lambda expression and I think it may be a bug. Here is my code :
bulkQuery.indexBulkData(list, (City ppe) -> ppe.getId().toString());
and here is the delomboked code with missing () around City ppe :
bulkQuery.indexBulkData(list, City ppe -> ppe.getId().toString());
This code does not compile.
Thanks a lot for your help Nicolas
NB (update) : I'm using the last versions of lombok (1.16.6) and lombok maven plugin (1.16.6.1)
The text was updated successfully, but these errors were encountered:
ba2cde3
Hello and thank you for this fix. One more question, when to you plan a release including this fix ?
Thx, Nicolas
Sorry, something went wrong.
No branches or pull requests
Hello,
I have a problem with delombok and an inline lambda expression and I think it may be a bug.
Here is my code :
and here is the delomboked code with missing () around City ppe :
This code does not compile.
Thanks a lot for your help
Nicolas
NB (update) : I'm using the last versions of lombok (1.16.6) and lombok maven plugin (1.16.6.1)
The text was updated successfully, but these errors were encountered: