You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2023/06/28 18:36:55 UTC

[camel-spring-boot] branch release/4.0.0-RC1 updated: Fix Javadoc generation issues

This is an automated email from the ASF dual-hosted git repository.

gzurowski pushed a commit to branch release/4.0.0-RC1
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/release/4.0.0-RC1 by this push:
     new 18c5e9b61a8 Fix Javadoc generation issues
18c5e9b61a8 is described below

commit 18c5e9b61a81dbf048776f290b6d3ab5e8d31c52
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Wed Jun 28 20:36:35 2023 +0200

    Fix Javadoc generation issues
    
    Make test method public to avoid issues with the Javadoc generation:
    ```
    Error while generating Javadoc:
    error: No public or protected classes found to document.
    ```
---
 .../java/org/apache/camel/xml/jaxb/springboot/JAXBRuntimeHintsTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components-starter/camel-xml-jaxb-starter/src/test/java/org/apache/camel/xml/jaxb/springboot/JAXBRuntimeHintsTest.java b/components-starter/camel-xml-jaxb-starter/src/test/java/org/apache/camel/xml/jaxb/springboot/JAXBRuntimeHintsTest.java
index 61aa398db01..0338ddb9bda 100644
--- a/components-starter/camel-xml-jaxb-starter/src/test/java/org/apache/camel/xml/jaxb/springboot/JAXBRuntimeHintsTest.java
+++ b/components-starter/camel-xml-jaxb-starter/src/test/java/org/apache/camel/xml/jaxb/springboot/JAXBRuntimeHintsTest.java
@@ -28,7 +28,7 @@ import static org.assertj.core.api.Assertions.assertThat;
 /**
  * Unit tests for {@link JAXBRuntimeHints}.
  */
-class JAXBRuntimeHintsTest {
+public class JAXBRuntimeHintsTest {
     private final RuntimeHints hints = new RuntimeHints();
 
     @BeforeEach