Details
-
Type:
Improvement
-
Status: Resolved
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 2.16.0
-
Fix Version/s: 2.17.0
-
Component/s: camel-core
-
Labels:None
-
Patch Info:Patch Available
-
Estimated Complexity:Unknown
-
Flags:Patch
Description
Extending RouteDefinition gives issues because of 1 line in the ProcessorDefinition. RouteDefinition should be made final or the attached patch is needed. changing:
boolean parentIsRoute = this.getClass().isAssignableFrom(RouteDefinition.class.);
to
boolean parentIsRoute = RouteDefinition.class.isAssignableFrom(this.getClass());