Skip to content

Commit

Permalink
chore(fix) uses correct initialization for DefaultEndpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Matheus Caceres committed May 14, 2020
1 parent 1fbc620 commit 8c067be
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ public class CamundaBpmEndpointDefaultImpl extends DefaultEndpoint implements Ca

public CamundaBpmEndpointDefaultImpl(String uri, ParsedUri parsedUri, CamundaBpmComponent component,
Map<String, Object> parameters) {
super();
setCamelContext(component.getCamelContext());
setEndpointUri(uri);
super(uri, component);
this.uri = parsedUri;
this.component = component;
this.parameters = parameters;
Expand Down

0 comments on commit 8c067be

Please sign in to comment.