Skip to content

Commit

Permalink
Normalize end of comments
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 20, 2024
1 parent b603359 commit c65c2c2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/main/java/org/apache/commons/pool2/PoolUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ public String toString() {
* may be invalidated instead of being added to idle capacity.
*
* @param <T> type of objects in the pool
*
*/
private static final class ErodingObjectPool<T> implements ObjectPool<T> {

Expand Down Expand Up @@ -597,7 +596,6 @@ public String toString() {
* as the pool's minIdle setting.
*
* @param <T> type of objects in the pool
*
*/
private static final class ObjectPoolMinIdleTimerTask<T> extends TimerTask {

Expand Down Expand Up @@ -1022,7 +1020,6 @@ public boolean validateObject(final K key, final PooledObject<V> p) {
* </p>
*
* @param <T> type of objects in the pool
*
*/
private static final class SynchronizedObjectPool<T> implements ObjectPool<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ private AbandonedConfig(final AbandonedConfig abandonedConfig) {
*
* @return boolean true if stack trace logging is turned on for abandoned
* objects
*
*/
public boolean getLogAbandoned() {
return this.logAbandoned;
Expand Down Expand Up @@ -241,7 +240,6 @@ public boolean getUseUsageTracking() {
*
* @param logAbandoned true turns on abandoned stack trace logging
* @see #getLogAbandoned()
*
*/
public void setLogAbandoned(final boolean logAbandoned) {
this.logAbandoned = logAbandoned;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ private void addIdleObject(final PooledObject<T> p) throws Exception {
* is thrown. If there is no factory set (factory == null), an {@code IllegalStateException}
* is thrown.
* </p>
*
*/
@Override
public void addObject() throws Exception {
Expand Down

0 comments on commit c65c2c2

Please sign in to comment.