Repository: commons-dbcp Updated Branches: refs/heads/master 72c543a15 -> 61116129b
Add missing Javadoc tag. Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/61116129 Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/61116129 Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/61116129 Branch: refs/heads/master Commit: 61116129bf45a797552a4154efbb06c9b4c3cfc1 Parents: 72c543a Author: Gary Gregory <garydgreg...@gmail.com> Authored: Wed Apr 18 16:38:28 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Wed Apr 18 16:38:28 2018 -0600 ---------------------------------------------------------------------- .../org/apache/commons/dbcp2/cpdsadapter/DriverAdapterCPDS.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/61116129/src/main/java/org/apache/commons/dbcp2/cpdsadapter/DriverAdapterCPDS.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/dbcp2/cpdsadapter/DriverAdapterCPDS.java b/src/main/java/org/apache/commons/dbcp2/cpdsadapter/DriverAdapterCPDS.java index 1717dd5..e926ed0 100644 --- a/src/main/java/org/apache/commons/dbcp2/cpdsadapter/DriverAdapterCPDS.java +++ b/src/main/java/org/apache/commons/dbcp2/cpdsadapter/DriverAdapterCPDS.java @@ -611,10 +611,11 @@ public class DriverAdapterCPDS /** * Gets the number of statements to examine during each run of the - * idle object evictor thread (if any). + * idle object evictor thread (if any.) * * *see #setNumTestsPerEvictionRun * *see #setTimeBetweenEvictionRunsMillis + * @return the number of statements to examine during each run of the idle object evictor thread (if any.) */ public int getNumTestsPerEvictionRun() { return _numTestsPerEvictionRun; @@ -645,6 +646,7 @@ public class DriverAdapterCPDS * * *see #setMinEvictableIdleTimeMillis * *see #setTimeBetweenEvictionRunsMillis + * @return the minimum amount of time a statement may sit idle in the pool. */ public int getMinEvictableIdleTimeMillis() { return _minEvictableIdleTimeMillis;