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

commit edc8f1b0b872c884ad112e9408da85a2b12fcb80
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Mar 18 08:47:45 2025 -0400

    Javadoc
---
 .../org/apache/commons/dbutils/ResultSetHandler.java     | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/commons/dbutils/ResultSetHandler.java 
b/src/main/java/org/apache/commons/dbutils/ResultSetHandler.java
index 060b75f..49656b7 100644
--- a/src/main/java/org/apache/commons/dbutils/ResultSetHandler.java
+++ b/src/main/java/org/apache/commons/dbutils/ResultSetHandler.java
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.dbutils;
 
 import java.sql.ResultSet;
@@ -27,17 +28,12 @@ import java.sql.SQLException;
 public interface ResultSetHandler<T> {
 
     /**
-     * Turn the {@code ResultSet} into an Object.
-     *
-     * @param resultSet The {@code ResultSet} to handle.  It has not been 
touched
-     * before being passed to this method.
-     *
-     * @return An Object initialized with {@code ResultSet} data. It is
-     * legal for implementations to return {@code null} if the
-     * {@code ResultSet} contained 0 rows.
+     * Handles a {@link ResultSet}, usually by converting it into an Object.
      *
+     * @param resultSet The {@link ResultSet} to handle. It has not been 
touched before being passed to this method.
+     * @return An Object initialized with {@code ResultSet} data. It is legal 
for implementations to return {@code null} if the {@link ResultSet} contained 0
+     *         rows.
      * @throws SQLException if a database access error occurs
      */
     T handle(ResultSet resultSet) throws SQLException;
-
-}
\ No newline at end of file
+}

Reply via email to