Remove redundant default parameter value
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/1d28792a Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/1d28792a Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/1d28792a Branch: refs/heads/camel-2.17.x Commit: 1d28792a86b1af3ed1df2881f9910e2bfd9a10da Parents: eab03dd Author: Antonin Stefanutti <[email protected]> Authored: Mon Apr 4 10:34:50 2016 +0200 Committer: Antonin Stefanutti <[email protected]> Committed: Mon Apr 4 14:11:00 2016 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/cdi/CdiCamelFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/1d28792a/components/camel-cdi/src/main/java/org/apache/camel/cdi/CdiCamelFactory.java ---------------------------------------------------------------------- diff --git a/components/camel-cdi/src/main/java/org/apache/camel/cdi/CdiCamelFactory.java b/components/camel-cdi/src/main/java/org/apache/camel/cdi/CdiCamelFactory.java index ecd309c..29e9227 100755 --- a/components/camel-cdi/src/main/java/org/apache/camel/cdi/CdiCamelFactory.java +++ b/components/camel-cdi/src/main/java/org/apache/camel/cdi/CdiCamelFactory.java @@ -114,7 +114,7 @@ final class CdiCamelFactory { // Maintained for backward compatibility reason though this is redundant with @Uri // see https://issues.apache.org/jira/browse/CAMEL-5553?focusedCommentId=13445936&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13445936 - @Mock("") + @Mock @Produces @Typed(MockEndpoint.class) // Qualifiers are dynamically added in CdiCamelExtension
