[fixes #1918] toString now supports a configkey to tell it how to deal with super.

This commit is contained in:
Reinier Zwitserloot
2018-11-05 23:26:59 +01:00
parent 2c0ec93155
commit a73965b2b7
9 changed files with 101 additions and 22 deletions
@@ -0,0 +1,8 @@
//CONF: lombok.toString.callSuper = CALL
@lombok.ToString
class ToStringAutoSuperWithNoParent {
}
@lombok.ToString
class ToStringAutoSuperWithParent extends ToStringAutoSuperWithNoParent {
}