Skip to content

Commit

Permalink
Fix typ comment in ConnectionPoolConfiguration.
Browse files Browse the repository at this point in the history
The variable name in the comment is maxsize, so we modified it to initialize.

[#202]
  • Loading branch information
kommadot committed Nov 23, 2023
1 parent 1087f0a commit 3ee034a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -368,7 +368,7 @@ public Builder customizer(Consumer<PoolBuilder<Connection, ? extends PoolConfig<
*
* @param initialSize the initial pool size, must be equal or greater than zero.
* @return this {@link Builder}
* @throws IllegalArgumentException if {@code maxSize} is negative or zero.
* @throws IllegalArgumentException if {@code initialSize} is negative or zero.
*/
public Builder initialSize(int initialSize) {
if (initialSize < 0) {
Expand Down

0 comments on commit 3ee034a

Please sign in to comment.