JavaDoc fixes.

pull/1129/merge
Brett Wooldridge 7 years ago
parent b11eb4084c
commit 869b114ac6

@ -856,6 +856,8 @@ public class HikariConfig implements HikariConfigMXBean
/** /**
* Set the default schema name to be set on connections. * Set the default schema name to be set on connections.
*
* @param schema the name of the default schema
*/ */
public void setSchema(String schema) public void setSchema(String schema)
{ {

@ -66,7 +66,7 @@ public interface HikariPoolMXBean
/** /**
* Suspend the pool. When the pool is suspended, threads calling {@link DataSource#getConnection()} will be * Suspend the pool. When the pool is suspended, threads calling {@link DataSource#getConnection()} will be
* blocked <i>with no timeout</i> until the pool is resumed via the {@link #resumePool()} method. * blocked <i>with no timeout</i> until the pool is resumed via the {@link #resumePool()} method.
* <p/> * <br>
* This method has no effect unless the {@link HikariConfig#setAllowPoolSuspension(boolean)} method or equivalent * This method has no effect unless the {@link HikariConfig#setAllowPoolSuspension(boolean)} method or equivalent
* property has been set to {@code true}. * property has been set to {@code true}.
*/ */
@ -75,7 +75,7 @@ public interface HikariPoolMXBean
/** /**
* Resume the pool. Enables connection borrowing to resume on a pool that has been suspended via the * Resume the pool. Enables connection borrowing to resume on a pool that has been suspended via the
* {@link #suspendPool()} method. * {@link #suspendPool()} method.
* <p/> * <br>
* This method has no effect unless the {@link HikariConfig#setAllowPoolSuspension(boolean)} method or equivalent * This method has no effect unless the {@link HikariConfig#setAllowPoolSuspension(boolean)} method or equivalent
* property has been set to {@code true}. * property has been set to {@code true}.
*/ */

Loading…
Cancel
Save