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
The following commit(s) were added to refs/heads/main by this push:
new 311a479a34f Camel-Catalog: Fixed tests
311a479a34f is described below
commit 311a479a34f66150b910f62054ff82cfa2b52895
Author: Andrea Cosentino <[email protected]>
AuthorDate: Fri Sep 13 08:50:31 2024 +0200
Camel-Catalog: Fixed tests
Signed-off-by: Andrea Cosentino <[email protected]>
---
.../src/test/java/org/apache/camel/catalog/CamelCatalogTest.java | 2 +-
core/camel-util/src/main/java/org/apache/camel/util/URISupport.java | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
b/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
index 9ee36b3f32f..0bb007d7f7f 100644
---
a/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
+++
b/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
@@ -1557,7 +1557,7 @@ public class CamelCatalogTest {
am = catalog.modelFromMavenGAV("org.apache.camel", "camel-jms", null);
Assertions.assertInstanceOf(ComponentModel.class, am);
- Assertions.assertEquals("Sent and receive messages to/from a JMS Queue
or Topic.", am.getDescription());
+ Assertions.assertEquals("Send and receive messages to/from JMS message
brokers.", am.getDescription());
}
@Test
diff --git
a/core/camel-util/src/main/java/org/apache/camel/util/URISupport.java
b/core/camel-util/src/main/java/org/apache/camel/util/URISupport.java
index cc9abe4b7dc..88eaf483a82 100644
--- a/core/camel-util/src/main/java/org/apache/camel/util/URISupport.java
+++ b/core/camel-util/src/main/java/org/apache/camel/util/URISupport.java
@@ -38,9 +38,9 @@ import static
org.apache.camel.util.CamelURIParser.URI_ALREADY_NORMALIZED;
/**
* URI utilities.
*
- * IMPORTANT: This class is only intended for Camel internal, Camel
components, and other Camel features.
- * If you need a general purpose URI/URL utility class then do not use this
class. This class is implemented
- * in a certain way to work and support how Camel internally parses endpoint
URIs.
+ * IMPORTANT: This class is only intended for Camel internal, Camel
components, and other Camel features. If you need a
+ * general purpose URI/URL utility class then do not use this class. This
class is implemented in a certain way to work
+ * and support how Camel internally parses endpoint URIs.
*/
public final class URISupport {