Skip to content

Commit

Permalink
4.x: Ensures there is no trailing whitespace in Java properties lines…
Browse files Browse the repository at this point in the history
… in persistence.adoc with Asciidoctor callouts at the expense of visual cleanliness (#9352) (#9372)

* Ensures there is no trailing whitespace in Java properties lines with Asciidoctor callouts at the expense of visual cleanliness
---------

Signed-off-by: Laird Nelson <[email protected]>
Co-authored-by: Laird Nelson <[email protected]>
  • Loading branch information
barchetta and ljnelson authored Oct 11, 2024
1 parent 891eb67 commit 505ed85
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/src/main/asciidoc/mp/persistence.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ the `test` data source's associated connection pool or vendor-specific
[source,properties]
----
javax.sql.DataSource.test.foo.bar=baz # <1> <2> <3>
javax.sql.DataSource.test.foo.bar=baz# <1><2><3>
----
<1> The *_objecttype_* portion of the configuration property name is
`javax.sql.DataSource`.
Expand Down Expand Up @@ -434,8 +434,8 @@ a service name of `XE`, a `user` of `scott`, and a `password` of
[source,properties]
----
javax.sql.DataSource.main.connectionFactoryClassName = oracle.jdbc.pool.OracleDataSource # <1>
javax.sql.DataSource.main.url = jdbc:oracle:thin://@localhost:1521/XE # <2>
javax.sql.DataSource.main.connectionFactoryClassName = oracle.jdbc.pool.OracleDataSource# <1>
javax.sql.DataSource.main.URL = jdbc:oracle:thin:@//localhost:1521/XE# <2>
javax.sql.DataSource.main.user = scott
javax.sql.DataSource.main.password = tiger
----
Expand Down Expand Up @@ -488,8 +488,8 @@ password:
[source,properties]
----
javax.sql.DataSource.test.dataSourceClassName = org.h2.jdbcx.JdbcDataSource # <1>
javax.sql.DataSource.test.dataSource.url = jdbc:h2:mem:unit-testing;DB_CLOSE_DELAY=-1 # <2> <3>
javax.sql.DataSource.test.dataSourceClassName = org.h2.jdbcx.JdbcDataSource# <1>
javax.sql.DataSource.test.dataSource.url = jdbc:h2:mem:unit-testing;DB_CLOSE_DELAY=-1# <2><3>
javax.sql.DataSource.test.dataSource.user = sa
javax.sql.DataSource.test.dataSource.password =
----
Expand Down

0 comments on commit 505ed85

Please sign in to comment.