diff options
author | Rawi01 <Rawi01@users.noreply.github.com> | 2021-05-29 18:49:05 +0200 |
---|---|---|
committer | Rawi01 <Rawi01@users.noreply.github.com> | 2021-06-03 19:23:19 +0200 |
commit | 60f575496b3184c2279e9dba470097ed164d5adf (patch) | |
tree | 61493259ec561b5d01a7a6e5361b4a7b16b5b106 /test/transform/resource/after-delombok/WithInAnonymousClass.java | |
parent | 6758714ed564d72236564889157c4812eacb96fb (diff) | |
download | lombok-60f575496b3184c2279e9dba470097ed164d5adf.tar.gz lombok-60f575496b3184c2279e9dba470097ed164d5adf.tar.bz2 lombok-60f575496b3184c2279e9dba470097ed164d5adf.zip |
[fixes #2838] Handle anonymous classes properly
Generated qualified names (e.g. Outer.Inner) now stop at anonymous
classes instead of adding an empty part. All handlers that add static
fields/methods/types now add error messages instead of generating
invalid code.
Diffstat (limited to 'test/transform/resource/after-delombok/WithInAnonymousClass.java')
-rw-r--r-- | test/transform/resource/after-delombok/WithInAnonymousClass.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/WithInAnonymousClass.java b/test/transform/resource/after-delombok/WithInAnonymousClass.java new file mode 100644 index 00000000..02490533 --- /dev/null +++ b/test/transform/resource/after-delombok/WithInAnonymousClass.java @@ -0,0 +1,19 @@ +public class WithInAnonymousClass { + Object annonymous = new Object() { + + class Inner { + private Inner(String string) { + } + + private String string; + + /** + * @return a clone of this object, except with this updated property (returns {@code this} if an identical value is passed). + */ + @java.lang.SuppressWarnings("all") + public Inner withString(final String string) { + return this.string == string ? this : new Inner(string); + } + } + }; +} |