There is a large refactoring going on in the Fuse Tooling to decouple the Camel model from individual runtime releases (FUSETOOLS-2263). Because we have integrated with the Camel Editor to provide a SwitchYard component on the palette, we must fix an issue that crops up as a side-effect of their refactoring. This line is the issue https://github.com/jboss-switchyard/tools/blob/master/eclipse/plugins/org.switchyard.tools.ui.editor/src/org/switchyard/tools/ui/editor/components/camel/CamelComponentPaletteEntry.java#L59 The CamelModelFactory class (import org.fusesource.ide.camel.model.service.core.catalog.CamelModelFactory) no longer exists. It has been replaced. We can change that line to:
return CamelCatalogUtils.RUNTIME_PROVIDER_KARAF.equals(runtimeProvider);
|
|