If the abstract methods are overriding from a parent interface, the annotation (if present) is copied over to the generated Builder class which causes compile time errors since the builder methods are not overriding anything.
The quick fix is to omit the @OverRide annotations, but this is not ideal.
Future version will not copy this annotation to the builder methods.
If the abstract methods are overriding from a parent interface, the annotation (if present) is copied over to the generated Builder class which causes compile time errors since the builder methods are not overriding anything.
The quick fix is to omit the @OverRide annotations, but this is not ideal.
Future version will not copy this annotation to the builder methods.