Refactoring: Use lombok for simple getters & setters (#18559)

* Add missing @Override annotation

* Fix JavaDoc unresolved symbol

* Fix JavaDoc method link

* Remove unnecessary semicolon

* Remove method identical to super implementations

* Replace repetitive getter code with Lombok @Getter

See https://projectlombok.org/features/GetterSetter

* Replace repetitive setter code with Lombok @Setter

See https://projectlombok.org/features/GetterSetter

* Generate no-args constructor with Lombok

* Generate all-args constructor with Lombok

* Fix parameter naming

* Replace stubbed abstract class implementations with Mockito mocks

* Remove unused import(s)
This commit is contained in:
Philzen
2024-06-05 04:43:05 +02:00
committed by GitHub
parent 42c78403cb
commit aef4d75fd5
237 changed files with 1503 additions and 5226 deletions

View File

@@ -38,5 +38,5 @@ public enum DocumentationFeature {
* Generated output includes documentation for all generated APIs.
*/
@ToolingExtension
Api;
Api
}