From 1c13fcd7cd2cb18dfb59b69afc83ef73fd6250e9 Mon Sep 17 00:00:00 2001 From: Brett Wooldridge Date: Tue, 24 Sep 2024 02:53:28 +0900 Subject: [PATCH] Fix JavaDoc error, self-closing tags not allowed. --- src/main/java/com/zaxxer/hikari/HikariConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/zaxxer/hikari/HikariConfig.java b/src/main/java/com/zaxxer/hikari/HikariConfig.java index 13cdaccc..f0cc081c 100644 --- a/src/main/java/com/zaxxer/hikari/HikariConfig.java +++ b/src/main/java/com/zaxxer/hikari/HikariConfig.java @@ -454,11 +454,11 @@ public class HikariConfig implements HikariConfigMXBean /** * Add a property (name/value pair) that will be used to configure the {@link DataSource}/{@link java.sql.Driver}. - *

+ *

* In the case of a {@link DataSource}, the property names will be translated to Java setters following the Java Bean * naming convention. For example, the property {@code cachePrepStmts} will translate into {@code setCachePrepStmts()} * with the {@code value} passed as a parameter. - *

+ *

* In the case of a {@link java.sql.Driver}, the property will be added to a {@link Properties} instance that will * be passed to the driver during {@link java.sql.Driver#connect(String, Properties)} calls. *