diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-11-23 03:53:12 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-11-23 03:53:12 +0100 |
commit | ac319cca87020b779722351f37cc0a9c40b12872 (patch) | |
tree | 2e8cb98b2745ea97b311f6689280f3d014513ce1 /test/transform/resource/after-ecj | |
parent | 5029fd041ddf0e3654c7f3d5106cf8cbb90b5243 (diff) | |
download | lombok-ac319cca87020b779722351f37cc0a9c40b12872.tar.gz lombok-ac319cca87020b779722351f37cc0a9c40b12872.tar.bz2 lombok-ac319cca87020b779722351f37cc0a9c40b12872.zip |
[Fixes #945] wither methods for abstract classes now slightly less useless.
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r-- | test/transform/resource/after-ecj/WitherWithAbstract.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/WitherWithAbstract.java b/test/transform/resource/after-ecj/WitherWithAbstract.java new file mode 100644 index 00000000..90fd6448 --- /dev/null +++ b/test/transform/resource/after-ecj/WitherWithAbstract.java @@ -0,0 +1,7 @@ +abstract class WitherWithAbstract { + @lombok.experimental.Wither String foo; + WitherWithAbstract() { + super(); + } + public abstract @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") WitherWithAbstract withFoo(final String foo); +} |