This is an automated email from the ASF dual-hosted git repository.

onders pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new acc95a4  Remove single arg constructor from the template as there is 
no in DefaultEndpoint
acc95a4 is described below

commit acc95a47fef034600085a49a072734f506ea0309
Author: onders <ond...@apache.org>
AuthorDate: Thu Apr 11 15:41:37 2019 +0300

    Remove single arg constructor from the template as there is no in 
DefaultEndpoint
---
 .../resources/archetype-resources/src/main/java/__name__Endpoint.java | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/archetypes/camel-archetype-component/src/main/resources/archetype-resources/src/main/java/__name__Endpoint.java
 
b/archetypes/camel-archetype-component/src/main/resources/archetype-resources/src/main/java/__name__Endpoint.java
index 11f78a3..c06d75e 100644
--- 
a/archetypes/camel-archetype-component/src/main/resources/archetype-resources/src/main/java/__name__Endpoint.java
+++ 
b/archetypes/camel-archetype-component/src/main/resources/archetype-resources/src/main/java/__name__Endpoint.java
@@ -43,10 +43,6 @@ public class ${name}Endpoint extends DefaultEndpoint {
         super(uri, component);
     }
 
-    public ${name}Endpoint(String endpointUri) {
-        super(endpointUri);
-    }
-
     public Producer createProducer() throws Exception {
         return new ${name}Producer(this);
     }

Reply via email to