aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WitherLegacyStar.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/WitherLegacyStar.java')
-rw-r--r--test/transform/resource/after-ecj/WitherLegacyStar.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/WitherLegacyStar.java b/test/transform/resource/after-ecj/WitherLegacyStar.java
index 7aeaa969..2b9ebe79 100644
--- a/test/transform/resource/after-ecj/WitherLegacyStar.java
+++ b/test/transform/resource/after-ecj/WitherLegacyStar.java
@@ -5,6 +5,9 @@ class WitherLegacyStar {
super();
this.i = i;
}
+ /**
+ * @return a clone of this object, except with this updated property (returns {@code this} if an identical value is passed).
+ */
public @java.lang.SuppressWarnings("all") WitherLegacyStar withI(final int i) {
return ((this.i == i) ? this : new WitherLegacyStar(i));
}