aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ToStringAutoExclude.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok/ToStringAutoExclude.java')
-rw-r--r--test/transform/resource/after-delombok/ToStringAutoExclude.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ToStringAutoExclude.java b/test/transform/resource/after-delombok/ToStringAutoExclude.java
new file mode 100644
index 00000000..2beee756
--- /dev/null
+++ b/test/transform/resource/after-delombok/ToStringAutoExclude.java
@@ -0,0 +1,20 @@
+class ToStringAutoExclude {
+ int x;
+ String $a;
+ transient String b;
+ @java.lang.Override
+ @java.lang.SuppressWarnings("all")
+ public java.lang.String toString() {
+ return "ToStringAutoExclude(x=" + this.x + ", b=" + this.b + ")";
+ }
+}
+class ToStringAutoExclude2 {
+ int x;
+ String $a;
+ transient String b;
+ @java.lang.Override
+ @java.lang.SuppressWarnings("all")
+ public java.lang.String toString() {
+ return "ToStringAutoExclude2(x=" + this.x + ", $a=" + this.$a + ", b=" + this.b + ")";
+ }
+} \ No newline at end of file