add tests to ensure onlyExplicitlyIncluded means nothing if no fields are annotated. Fixes #1772

This commit is contained in:
Roel Spilker
2018-10-15 23:19:55 +02:00
parent 7ee4ebb1a5
commit 89294fe03c
6 changed files with 70 additions and 0 deletions
@@ -0,0 +1,4 @@
@lombok.ToString(onlyExplicitlyIncluded = true)
class ToStringExplicitInclude {
int x;
}