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-dbutils.git


The following commit(s) were added to refs/heads/master by this push:
     new e6ccd47  Normalize getter Javadoc
e6ccd47 is described below

commit e6ccd47ebde544246c05887cd65c87c57d2bd0bf
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 31 06:45:08 2023 -0400

    Normalize getter Javadoc
---
 .../java/org/apache/commons/dbutils/AbstractQueryRunner.java |  2 +-
 src/main/java/org/apache/commons/dbutils/BeanProcessor.java  |  2 +-
 src/main/java/org/apache/commons/dbutils/OutParameter.java   |  6 +++---
 .../org/apache/commons/dbutils/StatementConfiguration.java   | 12 ++++++------
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/main/java/org/apache/commons/dbutils/AbstractQueryRunner.java 
b/src/main/java/org/apache/commons/dbutils/AbstractQueryRunner.java
index b1bb78f..b7a5114 100644
--- a/src/main/java/org/apache/commons/dbutils/AbstractQueryRunner.java
+++ b/src/main/java/org/apache/commons/dbutils/AbstractQueryRunner.java
@@ -444,7 +444,7 @@ public abstract class AbstractQueryRunner {
     }
 
     /**
-     * Get the {@code ParameterMetaData} of the prepared statement, if the 
{@code pmdKnownBroken}
+     * Gets the {@code ParameterMetaData} of the prepared statement, if the 
{@code pmdKnownBroken}
      * is set to false.
      *
      * @param stmt
diff --git a/src/main/java/org/apache/commons/dbutils/BeanProcessor.java 
b/src/main/java/org/apache/commons/dbutils/BeanProcessor.java
index a3f0b0f..2d0b07c 100644
--- a/src/main/java/org/apache/commons/dbutils/BeanProcessor.java
+++ b/src/main/java/org/apache/commons/dbutils/BeanProcessor.java
@@ -166,7 +166,7 @@ public class BeanProcessor {
     }
 
     /**
-     * Get the write method to use when setting {@code value} to the {@code 
target}.
+     * Gets the write method to use when setting {@code value} to the {@code 
target}.
      *
      * @param target Object where the write method will be called.
      * @param prop   BeanUtils information.
diff --git a/src/main/java/org/apache/commons/dbutils/OutParameter.java 
b/src/main/java/org/apache/commons/dbutils/OutParameter.java
index 5f8a663..d28c63e 100644
--- a/src/main/java/org/apache/commons/dbutils/OutParameter.java
+++ b/src/main/java/org/apache/commons/dbutils/OutParameter.java
@@ -70,7 +70,7 @@ public class OutParameter<T> {
     }
 
     /**
-     * Get the Java class for this OUT parameter.
+     * Gets the Java class for this OUT parameter.
      * @return the Java class for this OUT parameter.
      */
     public Class<T> getJavaType() {
@@ -78,7 +78,7 @@ public class OutParameter<T> {
     }
 
     /**
-     * Get the JDBC SQL type for this OUT parameter.
+     * Gets the JDBC SQL type for this OUT parameter.
      * @return the JDBC SQL type for this OUT parameter.
      */
     public int getSqlType() {
@@ -86,7 +86,7 @@ public class OutParameter<T> {
     }
 
     /**
-     * Get the value of the OUT parameter.  After the stored procedure has
+     * Gets the value of the OUT parameter.  After the stored procedure has
      * been executed, the value is the value returned via this parameter.
      * @return the value of the OUT parameter.
      */
diff --git 
a/src/main/java/org/apache/commons/dbutils/StatementConfiguration.java 
b/src/main/java/org/apache/commons/dbutils/StatementConfiguration.java
index 605967e..da10a3d 100644
--- a/src/main/java/org/apache/commons/dbutils/StatementConfiguration.java
+++ b/src/main/java/org/apache/commons/dbutils/StatementConfiguration.java
@@ -150,7 +150,7 @@ public class StatementConfiguration {
     }
 
     /**
-     * Get the fetch direction.
+     * Gets the fetch direction.
      *
      * @return The direction to fetch or null if not set.
      */
@@ -159,7 +159,7 @@ public class StatementConfiguration {
     }
 
     /**
-     * Get the fetch size.
+     * Gets the fetch size.
      *
      * @return The fetch size or null if not set.
      */
@@ -168,7 +168,7 @@ public class StatementConfiguration {
     }
 
     /**
-     * Get the max field size.
+     * Gets the max field size.
      *
      * @return The max field size or null if not set.
      */
@@ -177,7 +177,7 @@ public class StatementConfiguration {
     }
 
     /**
-     * Get the max rows.
+     * Gets the max rows.
      *
      * @return The max rows or null if not set.
      */
@@ -186,7 +186,7 @@ public class StatementConfiguration {
     }
 
     /**
-     * Get the query timeout.
+     * Gets the query timeout.
      *
      * @return The query timeout or null if not set.
      * @deprecated Use {@link #getQueryTimeoutDuration()}.
@@ -197,7 +197,7 @@ public class StatementConfiguration {
     }
 
     /**
-     * Get the query timeout.
+     * Gets the query timeout.
      *
      * @return The query timeout or null if not set.
      * @since 1.8.0

Reply via email to