delombok no longer prints generated outer-instance constructor parameters, fixes #1521

This commit is contained in:
Roel Spilker
2017-12-04 22:28:21 +01:00
parent 602877e694
commit 003832670e
4 changed files with 133 additions and 6 deletions
@@ -0,0 +1,17 @@
class A {
@lombok.AllArgsConstructor
class B {
String s;
}
}
class C {
@lombok.Value
class D {
A a;
A.B test(String s) {
return a.new B(s) {};
}
}
}