diff options
Diffstat (limited to 'test/transform/resource/before/DelegateWithDeprecated.java')
-rw-r--r-- | test/transform/resource/before/DelegateWithDeprecated.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/transform/resource/before/DelegateWithDeprecated.java b/test/transform/resource/before/DelegateWithDeprecated.java index b748c6ec..064e951d 100644 --- a/test/transform/resource/before/DelegateWithDeprecated.java +++ b/test/transform/resource/before/DelegateWithDeprecated.java @@ -6,7 +6,9 @@ class DelegateWithDeprecated { private interface Bar { @Deprecated void deprecatedAnnotation(); - /** @deprecated */ + /** + * @deprecated + */ void deprecatedComment(); void notDeprecated(); } |