diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-01-15 00:52:53 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-01-15 00:52:53 +0100 |
commit | 94381d0e9a6871d252e363fa98500d50e8e71dd2 (patch) | |
tree | 4e9d8fcc957f4e59ea077827b3373983a6e8650e /test/transform/resource/after-delombok | |
parent | 299078684931e91863d7f3cfcc30d2c8e9eb24ee (diff) | |
download | lombok-94381d0e9a6871d252e363fa98500d50e8e71dd2.tar.gz lombok-94381d0e9a6871d252e363fa98500d50e8e71dd2.tar.bz2 lombok-94381d0e9a6871d252e363fa98500d50e8e71dd2.zip |
[fixes #2335] ObtainVia(method=) on more than one arg would crash in javac
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/BuilderWithToBuilder.java | 3 | ||||
-rw-r--r-- | test/transform/resource/after-delombok/I2335_BuilderMultipleObtainVia.java | 59 |
2 files changed, 61 insertions, 1 deletions
diff --git a/test/transform/resource/after-delombok/BuilderWithToBuilder.java b/test/transform/resource/after-delombok/BuilderWithToBuilder.java index 2c4b0531..aa47c430 100644 --- a/test/transform/resource/after-delombok/BuilderWithToBuilder.java +++ b/test/transform/resource/after-delombok/BuilderWithToBuilder.java @@ -86,7 +86,8 @@ class BuilderWithToBuilder<T> { } @java.lang.SuppressWarnings("all") public BuilderWithToBuilder.BuilderWithToBuilderBuilder<T> toBuilder() { - final BuilderWithToBuilder.BuilderWithToBuilderBuilder<T> builder = new BuilderWithToBuilder.BuilderWithToBuilderBuilder<T>().one(this.mOne).two(this.mTwo).foo(BuilderWithToBuilder.<T>rrr(this)); + final T foo = BuilderWithToBuilder.<T>rrr(this); + final BuilderWithToBuilder.BuilderWithToBuilderBuilder<T> builder = new BuilderWithToBuilder.BuilderWithToBuilderBuilder<T>().one(this.mOne).two(this.mTwo).foo(foo); if (this.bars != null) builder.bars(this.bars); return builder; } diff --git a/test/transform/resource/after-delombok/I2335_BuilderMultipleObtainVia.java b/test/transform/resource/after-delombok/I2335_BuilderMultipleObtainVia.java new file mode 100644 index 00000000..f9cd424d --- /dev/null +++ b/test/transform/resource/after-delombok/I2335_BuilderMultipleObtainVia.java @@ -0,0 +1,59 @@ +public class I2335_BuilderMultipleObtainVia { + private String theString; + private Long theLong; + public I2335_BuilderMultipleObtainVia(String theString, Long theLong) { + setTheString(theString); + setTheLong(theLong); + } + public String getTheString() { + return theString; + } + public Long getTheLong() { + return theLong; + } + public void setTheString(String theString) { + this.theString = theString; + } + public void setTheLong(Long theLong) { + this.theLong = theLong; + } + @java.lang.SuppressWarnings("all") + public static class I2335_BuilderMultipleObtainViaBuilder { + @java.lang.SuppressWarnings("all") + private String theString; + @java.lang.SuppressWarnings("all") + private Long theLong; + @java.lang.SuppressWarnings("all") + I2335_BuilderMultipleObtainViaBuilder() { + } + @java.lang.SuppressWarnings("all") + public I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder theString(final String theString) { + this.theString = theString; + return this; + } + @java.lang.SuppressWarnings("all") + public I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder theLong(final Long theLong) { + this.theLong = theLong; + return this; + } + @java.lang.SuppressWarnings("all") + public I2335_BuilderMultipleObtainVia build() { + return new I2335_BuilderMultipleObtainVia(this.theString, this.theLong); + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public java.lang.String toString() { + return "I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder(theString=" + this.theString + ", theLong=" + this.theLong + ")"; + } + } + @java.lang.SuppressWarnings("all") + public static I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder builder() { + return new I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder(); + } + @java.lang.SuppressWarnings("all") + public I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder toBuilder() { + final String theString = this.getTheString(); + final Long theLong = this.getTheLong(); + return new I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder().theString(theString).theLong(theLong); + } +} |