diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2023-01-12 01:56:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 01:56:15 +0100 |
commit | 8bb4dc5daa8792e718e88c596812f232a2b73e6e (patch) | |
tree | 359d583cc91248be7eaf895e5d0371f1da555a27 /test/transform/resource/after-ecj | |
parent | b69ff85b9494a1a05a5763ef53069437328d443a (diff) | |
parent | 4feabb4d1e247f21134657a159727b6f6c9e2c94 (diff) | |
download | lombok-8bb4dc5daa8792e718e88c596812f232a2b73e6e.tar.gz lombok-8bb4dc5daa8792e718e88c596812f232a2b73e6e.tar.bz2 lombok-8bb4dc5daa8792e718e88c596812f232a2b73e6e.zip |
Merge pull request #3312 from Rawi01/extensionmethod-nonstatic
Ignore non-static/non-public extension methods
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r-- | test/transform/resource/after-ecj/ExtensionMethodNonStatic.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/ExtensionMethodNonStatic.java b/test/transform/resource/after-ecj/ExtensionMethodNonStatic.java new file mode 100644 index 00000000..e2362790 --- /dev/null +++ b/test/transform/resource/after-ecj/ExtensionMethodNonStatic.java @@ -0,0 +1,18 @@ +import lombok.experimental.ExtensionMethod; +@ExtensionMethod({ExtensionMethodNonStatic.Extensions.class}) class ExtensionMethodNonStatic { + static class Extensions { + Extensions() { + super(); + } + public boolean startsWith(String s, String prefix) { + return s.startsWith(prefix); + } + } + ExtensionMethodNonStatic() { + super(); + } + public void test() { + String s = "test"; + s.startsWith(""); + } +}
\ No newline at end of file |