Skip to content

Commit

Permalink
Normalize getter Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 31, 2023
1 parent 0ec413c commit 77da93a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public GenericKeyedObjectPoolConfig<T> clone() {
}

/**
* Get the value for the {@code maxIdlePerKey} configuration attribute
* Gets the value for the {@code maxIdlePerKey} configuration attribute
* for pools created with this configuration instance.
*
* @return The current setting of {@code maxIdlePerKey} for this
Expand All @@ -93,7 +93,7 @@ public int getMaxIdlePerKey() {
}

/**
* Get the value for the {@code maxTotal} configuration attribute
* Gets the value for the {@code maxTotal} configuration attribute
* for pools created with this configuration instance.
*
* @return The current setting of {@code maxTotal} for this
Expand All @@ -106,7 +106,7 @@ public int getMaxTotal() {
}

/**
* Get the value for the {@code maxTotalPerKey} configuration attribute
* Gets the value for the {@code maxTotalPerKey} configuration attribute
* for pools created with this configuration instance.
*
* @return The current setting of {@code maxTotalPerKey} for this
Expand All @@ -119,7 +119,7 @@ public int getMaxTotalPerKey() {
}

/**
* Get the value for the {@code minIdlePerKey} configuration attribute
* Gets the value for the {@code minIdlePerKey} configuration attribute
* for pools created with this configuration instance.
*
* @return The current setting of {@code minIdlePerKey} for this
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public GenericObjectPoolConfig<T> clone() {
}

/**
* Get the value for the {@code maxIdle} configuration attribute
* Gets the value for the {@code maxIdle} configuration attribute
* for pools created with this configuration instance.
*
* @return The current setting of {@code maxIdle} for this
Expand All @@ -80,7 +80,7 @@ public int getMaxIdle() {


/**
* Get the value for the {@code maxTotal} configuration attribute
* Gets the value for the {@code maxTotal} configuration attribute
* for pools created with this configuration instance.
*
* @return The current setting of {@code maxTotal} for this
Expand All @@ -93,7 +93,7 @@ public int getMaxTotal() {
}

/**
* Get the value for the {@code minIdle} configuration attribute
* Gets the value for the {@code minIdle} configuration attribute
* for pools created with this configuration instance.
*
* @return The current setting of {@code minIdle} for this
Expand Down

0 comments on commit 77da93a

Please sign in to comment.