This is an automated email from the ASF dual-hosted git repository. acosentino 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 af1c532 Update camel-3-migration-guide.adoc af1c532 is described below commit af1c532d7453c23c3d7a50aaafe1587d0fbb7ce3 Author: fg78nc <fg7...@gmail.com> AuthorDate: Sat Jan 30 14:20:01 2021 -0500 Update camel-3-migration-guide.adoc ModelHelper is no longer available since v3.1, updating documentation to reflect right way to load XML RouteDefinitions. --- docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc b/docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc index 8c2e8f4..6fedce6 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-3-migration-guide.adoc @@ -484,7 +484,7 @@ The methods on `CamelContext` that are related to catalog has been moved into a CatalogCamelContext ccc = context.adapt(CatalogCamelContext.class); -The `loadRouteDefinitions` and `loadRestDefinitions` on `ModelCamelContext` has been changed to `addRouteDefinitions` and `addRestDefinitions` to be aligned with the other methods. You can find loader methods on the `ModelHelper` utility class. +The `loadRouteDefinitions` and `loadRestDefinitions` on `ModelCamelContext` has been changed to `addRouteDefinitions` and `addRestDefinitions` to be aligned with the other methods. You can find `getModelToXMLDumper` and `getXMLRoutesDefinitionLoader` loader methods on the `ExtendedCamelContext` class. ==== ModelCamelContext