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
Describe the bug
Calling delombok for code that contains a method signature using varargs results in code that contains syntax errors. This happens only if the vararg param is a parametrized type with an array parameter (e.g. Foo<byte[]> ...).
To Reproduce
Original code:
Class with @RequiredArgsConstructor and a method signature:
public List<ByteRecord> xReadGroup(Consumer consumer, StreamReadOptions readOptions, StreamOffset<byte[]>... streams)
Describe the bug
Calling delombok for code that contains a method signature using varargs results in code that contains syntax errors. This happens only if the vararg param is a parametrized type with an array parameter (e.g.
Foo<byte[]> ...
).To Reproduce
Original code:
Class with
@RequiredArgsConstructor
and a method signature:(link to full code)
After delombok:
Expected behavior
No change of that method.
Version info (please complete the following information):
Additional context
Can be reproduced using https://github.com/spring-projects/spring-data-redis by forcing Lombok plugin version to a newer version than 1.18.4.0 and
mvn clean install -DskipTests -Pci
The text was updated successfully, but these errors were encountered: