Repository: camel Updated Branches: refs/heads/master d676a2f43 -> 46f83c924
CAMEL-10735: Mark stuff for deprecate Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/46f83c92 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/46f83c92 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/46f83c92 Branch: refs/heads/master Commit: 46f83c924fd6353116674c1f960193de4131c13c Parents: d676a2f Author: Claus Ibsen <davscl...@apache.org> Authored: Wed Feb 22 16:40:10 2017 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Wed Feb 22 16:40:10 2017 +0100 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/converter/HasAnnotation.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/46f83c92/camel-core/src/main/java/org/apache/camel/converter/HasAnnotation.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/converter/HasAnnotation.java b/camel-core/src/main/java/org/apache/camel/converter/HasAnnotation.java index b83de81..edff4e0 100644 --- a/camel-core/src/main/java/org/apache/camel/converter/HasAnnotation.java +++ b/camel-core/src/main/java/org/apache/camel/converter/HasAnnotation.java @@ -27,11 +27,13 @@ import java.lang.annotation.Target; * to be applicable. e.g. this annotation could be used on a JAXB converter which only applies to objects with a * JAXB annotation on them * - * @version + * @version + * @deprecated not in use, will be removed in next Camel release. */ @Retention(RetentionPolicy.RUNTIME) @Documented @Target({ElementType.PARAMETER }) +@Deprecated public @interface HasAnnotation { Class<?> value();