diff options
author | Rawi01 <Rawi01@users.noreply.github.com> | 2021-11-08 14:39:53 +0100 |
---|---|---|
committer | Rawi01 <Rawi01@users.noreply.github.com> | 2022-05-20 00:08:05 +0200 |
commit | d2d97539d26f6023ffc4565286f08427c4e8b41c (patch) | |
tree | 4a25e66e48b41143bb03d8c5ec9a6f7f8241ee61 /test/eclipse/resource/cleanup/useThis/after | |
parent | 59717d0c95d62b0b1bedd49ac4a047663a55da22 (diff) | |
download | lombok-d2d97539d26f6023ffc4565286f08427c4e8b41c.tar.gz lombok-d2d97539d26f6023ffc4565286f08427c4e8b41c.tar.bz2 lombok-d2d97539d26f6023ffc4565286f08427c4e8b41c.zip |
Add support for eclipse feature tests
Diffstat (limited to 'test/eclipse/resource/cleanup/useThis/after')
-rw-r--r-- | test/eclipse/resource/cleanup/useThis/after/A.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/eclipse/resource/cleanup/useThis/after/A.java b/test/eclipse/resource/cleanup/useThis/after/A.java new file mode 100644 index 00000000..58913c6c --- /dev/null +++ b/test/eclipse/resource/cleanup/useThis/after/A.java @@ -0,0 +1,18 @@ +package pkg; + +import lombok.Builder; +import lombok.Data; +import lombok.With; +import lombok.experimental.WithBy; + +@Data +@Builder +@With +@WithBy +public class A { + private String string; + + public void a() { + this.string = "a"; + } +}
\ No newline at end of file |