According to this Lombok documentation, there are 7 things generated by annotating a class with @Builder, one of them being "A sensible toString() implementation"
In the project I am working on, this default toString() method has in fact caused some annoyance that jacoco report considers the method was not tested, and indeed it wasn't, because I did not mean to have a toString() method at all.
Is there a way to avoid the generation of the default toString() method, and if so, how?
Any thoughts or insight would be much appreciated.