This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 49be3c13b30512f0c1ca2bdcbc920893d17e2445 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Wed Feb 26 20:28:38 2025 +0100 CAMEL-20837: minor api adjustments (#17285) * Fix a documentation typo Signed-off-by: Otavio R. Piske <[email protected]> * CAMEL-20837: allow providing a different supplier for creating the context Signed-off-by: Otavio R. Piske <[email protected]> --------- Signed-off-by: Otavio R. Piske <[email protected]> --- .../java/org/apache/camel/test/junit5/CamelContextConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelContextConfiguration.java b/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelContextConfiguration.java index eb9dd1be4a5..2f82c5cb9e8 100644 --- a/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelContextConfiguration.java +++ b/components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/CamelContextConfiguration.java @@ -262,7 +262,7 @@ public class CamelContextConfiguration { * * @param camelContextSupplier A supplier for the Camel context */ - protected CamelContextConfiguration withCamelContextSupplier( + public CamelContextConfiguration withCamelContextSupplier( CamelContextSupplier camelContextSupplier) { this.camelContextSupplier = camelContextSupplier; return this; @@ -344,7 +344,7 @@ public class CamelContextConfiguration { } /** - * Set set a custom post-test processor + * Set a custom post-test processor * * @param postProcessor the post-test processor to use */
