From 9d19f66e8317a0feedd8d192ba7bf391cccb1757 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Wed, 20 Mar 2019 14:37:47 -0400 Subject: [PATCH] GH-2825: Fix 4.3 Doc rendering Fixes https://github.com/spring-projects/spring-integration/issues/2825 --- src/reference/asciidoc/gateway.adoc | 1 - src/reference/asciidoc/jdbc.adoc | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/reference/asciidoc/gateway.adoc b/src/reference/asciidoc/gateway.adoc index fb5a106d03..da467cb7ff 100644 --- a/src/reference/asciidoc/gateway.adoc +++ b/src/reference/asciidoc/gateway.adoc @@ -514,7 +514,6 @@ In this scenario, it is expected that the downstream flow will return a `Complet In the following scenario, the caller thread returns immediately with a `CompletableFuture`, which is completed when the downstream flow replies to the gateway (with an `Invoice` object). -==== [source, java] ---- diff --git a/src/reference/asciidoc/jdbc.adoc b/src/reference/asciidoc/jdbc.adoc index 11c58d06ee..6bc299f0f0 100644 --- a/src/reference/asciidoc/jdbc.adoc +++ b/src/reference/asciidoc/jdbc.adoc @@ -789,8 +789,6 @@ _Required_. <2> If this attribute is set to `true`, all results from a stored procedure call that do not have a corresponding `SqlOutParameter` declaration are bypassed. For example, stored procedures can return an update count value, even though your stored procedure declared only a single result parameter. -<3> If this attribute is set to `true`, then all results from a stored procedure call that don't have a corresponding `SqlOutParameter` declaration will be bypassed. -E.g. Stored Procedures may return an update count value, even though your Stored Procedure only declared a single result parameter. The exact behavior depends on the used database. The value is set on the underlying `JdbcTemplate`. Few developers will probably ever want to process update counts, thus the value defaults to `true`.