From 76e5a2a53b4c71c33a7cd9bfb373df15d1299909 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Sat, 30 Mar 2019 00:26:58 +0100 Subject: [PATCH] Remove superfluous empty lines --- src/docs/asciidoc/web/webmvc-view.adoc | 7 ------- src/docs/asciidoc/web/webmvc.adoc | 1 - 2 files changed, 8 deletions(-) diff --git a/src/docs/asciidoc/web/webmvc-view.adoc b/src/docs/asciidoc/web/webmvc-view.adoc index 0e806c3d57..66cd86b4ed 100644 --- a/src/docs/asciidoc/web/webmvc-view.adoc +++ b/src/docs/asciidoc/web/webmvc-view.adoc @@ -943,7 +943,6 @@ For an example of this tag, see <>. You can als HTML5-specific types, such as `email`, `tel`, `date`, and others. - [[mvc-view-jsp-formtaglib-checkboxtag]] ==== The `checkbox` Tag @@ -1061,7 +1060,6 @@ telling Spring that "`the checkbox was visible in the form, and I want my object which the form data binds to reflect the state of the checkbox, no matter what.`" - [[mvc-view-jsp-formtaglib-checkboxestag]] ==== The `checkboxes` Tag @@ -1120,7 +1118,6 @@ but with different values, as the following example shows: ---- - [[mvc-view-jsp-formtaglib-radiobuttonstag]] ==== The `radiobuttons` Tag @@ -1212,7 +1209,6 @@ as follows: ---- - [[mvc-view-jsp-formtaglib-optiontag]] ==== The `option` Tag @@ -1256,7 +1252,6 @@ as follows: <1> Note the addition of a `selected` attribute. - [[mvc-view-jsp-formtaglib-optionstag]] ==== The `options` Tag @@ -1296,7 +1291,6 @@ If the `User` lived in the UK, the HTML source of the 'Country' row would be as ---- <1> Note the addition of a `selected` attribute. - As the preceding example shows, the combined usage of an `option` tag with the `options` tag generates the same standard HTML but lets you explicitly specify a value in the JSP that is for display only (where it belongs), such as the default string in the @@ -1311,7 +1305,6 @@ happen to be specified as well, the item value property applies to the map key, the item label property applies to the map value. - [[mvc-view-jsp-formtaglib-textareatag]] ==== The `textarea` Tag diff --git a/src/docs/asciidoc/web/webmvc.adoc b/src/docs/asciidoc/web/webmvc.adoc index 81d776bdf1..0713a14816 100644 --- a/src/docs/asciidoc/web/webmvc.adoc +++ b/src/docs/asciidoc/web/webmvc.adoc @@ -2121,7 +2121,6 @@ The following example shows how to get the cookie value: ---- <1> Get the value of the `JSESSIONID` cookie. - If the target method parameter type is not `String`, type conversion is applied automatically. See <>.