diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2021-03-22 11:38:56 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2021-03-22 11:38:56 +0100 |
commit | 3400f66fa70da6664e91d98cc63d8ea959979606 (patch) | |
tree | f02f94deb1ab6baac73738e58ce8ffb8957b8935 /test/transform/resource/after-delombok/WithByOnRecord.java | |
parent | bcd05a01b14705678dfd280989fa5071b627a234 (diff) | |
download | lombok-3400f66fa70da6664e91d98cc63d8ea959979606.tar.gz lombok-3400f66fa70da6664e91d98cc63d8ea959979606.tar.bz2 lombok-3400f66fa70da6664e91d98cc63d8ea959979606.zip |
[deps] pushing ASM to 9.1, and ASM opcode compat levels to ASM9, as we need the support for records
Diffstat (limited to 'test/transform/resource/after-delombok/WithByOnRecord.java')
-rw-r--r-- | test/transform/resource/after-delombok/WithByOnRecord.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/after-delombok/WithByOnRecord.java b/test/transform/resource/after-delombok/WithByOnRecord.java index d6a24a9a..6df5c9c4 100644 --- a/test/transform/resource/after-delombok/WithByOnRecord.java +++ b/test/transform/resource/after-delombok/WithByOnRecord.java @@ -1,9 +1,9 @@ +// version 14: record WithByOnRecord(String a, String b) { @java.lang.SuppressWarnings("all") public WithByOnRecord withABy(final java.util.function.Function<? super String, ? extends String> transformer) { return new WithByOnRecord(transformer.apply(this.a), this.b); } - @java.lang.SuppressWarnings("all") public WithByOnRecord withBBy(final java.util.function.Function<? super String, ? extends String> transformer) { return new WithByOnRecord(this.a, transformer.apply(this.b)); |