diff options
Diffstat (limited to 'test/transform/resource/after-delombok/WithMethodAbstract.java')
-rw-r--r-- | test/transform/resource/after-delombok/WithMethodAbstract.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/WithMethodAbstract.java b/test/transform/resource/after-delombok/WithMethodAbstract.java new file mode 100644 index 00000000..16f6f060 --- /dev/null +++ b/test/transform/resource/after-delombok/WithMethodAbstract.java @@ -0,0 +1,5 @@ +abstract class WithMethodAbstract { + String foo; + @java.lang.SuppressWarnings("all") + public abstract WithMethodAbstract withFoo(final String foo); +} |