From 3f620e3b84dbb8d6625b4c13ca8ee9fd0aa5777c Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 7 Jan 2020 22:31:43 +0100 Subject: [fixes #2327] mostly trivial: Added this. for field access and unified code gen of build() methods for `@Builder`. --- test/transform/resource/after-ecj/BuilderInstanceMethod.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/transform/resource/after-ecj/BuilderInstanceMethod.java') diff --git a/test/transform/resource/after-ecj/BuilderInstanceMethod.java b/test/transform/resource/after-ecj/BuilderInstanceMethod.java index 397ba113..e0bf16fd 100644 --- a/test/transform/resource/after-ecj/BuilderInstanceMethod.java +++ b/test/transform/resource/after-ecj/BuilderInstanceMethod.java @@ -25,7 +25,7 @@ class BuilderInstanceMethod { return this; } public @java.lang.SuppressWarnings("all") String build() { - return BuilderInstanceMethod.this.create(show, yes, also, $andMe); + return BuilderInstanceMethod.this.create(this.show, this.yes, this.also, this.$andMe); } public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { return (((((((("BuilderInstanceMethod.StringBuilder(show=" + this.show) + ", yes=") + this.yes) + ", also=") + this.also) + ", $andMe=") + this.$andMe) + ")"); -- cgit