Skip to content

Commit

Permalink
Normalize setter Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 31, 2023
1 parent 77da93a commit 6a3395d
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 @@ -132,7 +132,7 @@ public int getMinIdlePerKey() {
}

/**
* Set the value for the {@code maxIdlePerKey} configuration attribute for
* Sets the value for the {@code maxIdlePerKey} configuration attribute for
* pools created with this configuration instance.
*
* @param maxIdlePerKey The new setting of {@code maxIdlePerKey}
Expand All @@ -145,7 +145,7 @@ public void setMaxIdlePerKey(final int maxIdlePerKey) {
}

/**
* Set the value for the {@code maxTotal} configuration attribute for
* Sets the value for the {@code maxTotal} configuration attribute for
* pools created with this configuration instance.
*
* @param maxTotal The new setting of {@code maxTotal}
Expand All @@ -158,7 +158,7 @@ public void setMaxTotal(final int maxTotal) {
}

/**
* Set the value for the {@code maxTotalPerKey} configuration attribute for
* Sets the value for the {@code maxTotalPerKey} configuration attribute for
* pools created with this configuration instance.
*
* @param maxTotalPerKey The new setting of {@code maxTotalPerKey}
Expand All @@ -171,7 +171,7 @@ public void setMaxTotalPerKey(final int maxTotalPerKey) {
}

/**
* Set the value for the {@code minIdlePerKey} configuration attribute for
* Sets the value for the {@code minIdlePerKey} configuration attribute for
* pools created with this configuration instance.
*
* @param minIdlePerKey The new setting of {@code minIdlePerKey}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public int getMinIdle() {


/**
* Set the value for the {@code maxIdle} configuration attribute for
* Sets the value for the {@code maxIdle} configuration attribute for
* pools created with this configuration instance.
*
* @param maxIdle The new setting of {@code maxIdle}
Expand All @@ -120,7 +120,7 @@ public void setMaxIdle(final int maxIdle) {
}

/**
* Set the value for the {@code maxTotal} configuration attribute for
* Sets the value for the {@code maxTotal} configuration attribute for
* pools created with this configuration instance.
*
* @param maxTotal The new setting of {@code maxTotal}
Expand All @@ -133,7 +133,7 @@ public void setMaxTotal(final int maxTotal) {
}

/**
* Set the value for the {@code minIdle} configuration attribute for
* Sets the value for the {@code minIdle} configuration attribute for
* pools created with this configuration instance.
*
* @param minIdle The new setting of {@code minIdle}
Expand Down

0 comments on commit 6a3395d

Please sign in to comment.