vzhikserg opened a new pull request #6130: [broker] Remove duplicated lombok annotations in tests URL: https://github.com/apache/pulsar/pull/6130 ### Motivation Some of the classes in the pulsar-functions module had a mixture of the following lombok annotations: ``` @Data @Setter @Getter @EqualsAndHashCode @ToString ``` The [@Data](https://projectlombok.org/features/Data) annotation includes all other annotations: > All together now: A shortcut for @ToString, @EqualsAndHashCode, @Getter on all fields, @Setter on all non-final fields, and @RequiredArgsConstructor! ### Modifications Removed `@Setter`, `@Getter`, `@EqualsAndHashCode`, and '@ToString' if the `@Data` annotation was also present
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
