aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-07-08 21:17:01 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-07-08 21:21:33 +0200
commite7ff097fec867714b8a064b559dfc9e5162a489c (patch)
treef0856faea39984215db942113753fd5b8ac15766 /test
parentbf8e2afed07b4062ac3d3fee8b2f8981d1213f7e (diff)
downloadlombok-e7ff097fec867714b8a064b559dfc9e5162a489c.tar.gz
lombok-e7ff097fec867714b8a064b559dfc9e5162a489c.tar.bz2
lombok-e7ff097fec867714b8a064b559dfc9e5162a489c.zip
Fixed value's snippet integration (it hadn't been updated yet now that Value has moved from experimental into core).
Diffstat (limited to 'test')
-rw-r--r--test/transform/resource/after-delombok/WitherDeprecated.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/WitherDeprecated.java b/test/transform/resource/after-delombok/WitherDeprecated.java
index f076d90e..29192012 100644
--- a/test/transform/resource/after-delombok/WitherDeprecated.java
+++ b/test/transform/resource/after-delombok/WitherDeprecated.java
@@ -12,6 +12,9 @@ class WitherDeprecated {
public WitherDeprecated withAnnotation(final int annotation) {
return this.annotation == annotation ? this : new WitherDeprecated(annotation, this.javadoc);
}
+ /**
+ * @deprecated
+ */
@java.lang.Deprecated
@java.lang.SuppressWarnings("all")
public WitherDeprecated withJavadoc(final int javadoc) {