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

robertlazarski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git


The following commit(s) were added to refs/heads/master by this push:
     new 5fc693ee46 Fix XML entity escaping in WildFly HTTP/2 documentation
5fc693ee46 is described below

commit 5fc693ee46fae5e089ce4c7f27fdb693040041b8
Author: Robert Lazarski <[email protected]>
AuthorDate: Tue Dec 9 07:08:14 2025 -1000

    Fix XML entity escaping in WildFly HTTP/2 documentation
---
 src/site/xdoc/docs/wildfly-http2-integration-guide.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/site/xdoc/docs/wildfly-http2-integration-guide.xml 
b/src/site/xdoc/docs/wildfly-http2-integration-guide.xml
index fee6df6e62..7409980019 100644
--- a/src/site/xdoc/docs/wildfly-http2-integration-guide.xml
+++ b/src/site/xdoc/docs/wildfly-http2-integration-guide.xml
@@ -153,11 +153,11 @@ if (detector.isWildFlyEnvironmentAvailable()) {
 String detectedJsonLibrary = detectConfiguredJsonLibrary(configContext);
 
 if (detectedJsonLibrary != null) {
-    if ("MOSHI".equals(detectedJsonLibrary) && moshiProcessing) {
+    if ("MOSHI".equals(detectedJsonLibrary) &amp;&amp; moshiProcessing) {
         configContext.setProperty("HTTP2_MOSHI_JSON_PROCESSING_ENABLED", true);
         configContext.setProperty("JSON_LIBRARY_PREFERENCE", "MOSHI");
         log.info("Detected Moshi JSON configuration - enabled HTTP/2 
optimization for Moshi");
-    } else if ("GSON".equals(detectedJsonLibrary) && gsonProcessing) {
+    } else if ("GSON".equals(detectedJsonLibrary) &amp;&amp; gsonProcessing) {
         configContext.setProperty("HTTP2_GSON_JSON_PROCESSING_ENABLED", true);
         configContext.setProperty("JSON_LIBRARY_PREFERENCE", "GSON");
         log.info("Detected Gson JSON configuration - enabled HTTP/2 
optimization for Gson");

Reply via email to