This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/master by this push:
new 107ce62 Add missing Javadoc that causes the build to fail.
107ce62 is described below
commit 107ce6214eee04101bc9a132fe3776cbe6ecd904
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Sep 2 12:20:20 2021 -0400
Add missing Javadoc that causes the build to fail.
---
src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java
b/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java
index 6275fa3..d12b8c6 100644
--- a/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java
+++ b/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java
@@ -153,7 +153,11 @@ class EvictionTimer {
}
}
- /** For testing only. */
+ /**
+ * For testing only.
+ *
+ * @return The executor.
+ */
static ScheduledThreadPoolExecutor getExecutor() {
return executor;
}