Skip to content

Commit 5fc693e

Browse files
Fix XML entity escaping in WildFly HTTP/2 documentation
1 parent 903ace7 commit 5fc693e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/site/xdoc/docs/wildfly-http2-integration-guide.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ if (detector.isWildFlyEnvironmentAvailable()) {
153153
String detectedJsonLibrary = detectConfiguredJsonLibrary(configContext);
154154

155155
if (detectedJsonLibrary != null) {
156-
if ("MOSHI".equals(detectedJsonLibrary) && moshiProcessing) {
156+
if ("MOSHI".equals(detectedJsonLibrary) && moshiProcessing) {
157157
configContext.setProperty("HTTP2_MOSHI_JSON_PROCESSING_ENABLED", true);
158158
configContext.setProperty("JSON_LIBRARY_PREFERENCE", "MOSHI");
159159
log.info("Detected Moshi JSON configuration - enabled HTTP/2 optimization for Moshi");
160-
} else if ("GSON".equals(detectedJsonLibrary) && gsonProcessing) {
160+
} else if ("GSON".equals(detectedJsonLibrary) && gsonProcessing) {
161161
configContext.setProperty("HTTP2_GSON_JSON_PROCESSING_ENABLED", true);
162162
configContext.setProperty("JSON_LIBRARY_PREFERENCE", "GSON");
163163
log.info("Detected Gson JSON configuration - enabled HTTP/2 optimization for Gson");

0 commit comments

Comments
 (0)