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/29 08:22:38 UTC

[camel-spring-boot] 01/01: 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

commit fea14503b32b217ab61b312e8bb379070c3692f6
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Thu Jun 29 10:21:28 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.
    ```
---
 .../org/apache/camel/xml/jaxb/springboot/graalvm/JAXBSubstitutions.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components-starter/camel-xml-jaxb-starter/src/main/java/org/apache/camel/xml/jaxb/springboot/graalvm/JAXBSubstitutions.java b/components-starter/camel-xml-jaxb-starter/src/main/java/org/apache/camel/xml/jaxb/springboot/graalvm/JAXBSubstitutions.java
index b44441ff002..8cf3c5e7ed3 100644
--- a/components-starter/camel-xml-jaxb-starter/src/main/java/org/apache/camel/xml/jaxb/springboot/graalvm/JAXBSubstitutions.java
+++ b/components-starter/camel-xml-jaxb-starter/src/main/java/org/apache/camel/xml/jaxb/springboot/graalvm/JAXBSubstitutions.java
@@ -31,7 +31,7 @@ import org.glassfish.jaxb.core.v2.model.annotation.Locatable;
 import org.glassfish.jaxb.runtime.v2.model.annotation.LocatableAnnotation;
 import org.glassfish.jaxb.runtime.v2.model.annotation.RuntimeInlineAnnotationReader;
 
-class JAXBSubstitutions {
+public class JAXBSubstitutions {
 }
 
 @TargetClass(RuntimeInlineAnnotationReader.class)