Author: mwriedt
Date: Wed Feb  4 11:52:26 2026
New Revision: 1931706

Log:
Fixed some typos and javadocs

Modified:
   db/torque/trunk/README.md
   
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/BasePeerImpl.java
   
db/torque/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/recordmapper/base/dbObjectFieldGetter.vm
   
db/torque/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/recordmapper/base/mappingStrategyPath.vm

Modified: db/torque/trunk/README.md
==============================================================================
--- db/torque/trunk/README.md   Wed Feb  4 11:36:13 2026        (r1931705)
+++ db/torque/trunk/README.md   Wed Feb  4 11:52:26 2026        (r1931706)
@@ -29,7 +29,7 @@
 - Version 5 and 5.1 requires Java 8. 
 - Torque 4.0 requires JDK 1.6 or higher
 
-- Build and Tests run with Java 8 and 14 (v5.1) and Java 20 (v.6.0). 
+- Build and Tests run with Java 8 and 14 (v5.1) and Java 20 (v6.0). 
 
 - IDE integration
 

Modified: 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/BasePeerImpl.java
==============================================================================
--- 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/BasePeerImpl.java
       Wed Feb  4 11:36:13 2026        (r1931705)
+++ 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/BasePeerImpl.java
       Wed Feb  4 11:52:26 2026        (r1931706)
@@ -1022,7 +1022,7 @@ public class BasePeerImpl<T> implements
     }
 
     /**
-     * Selects rows from a database an maps them to objects.
+     * Selects rows from a database and maps them to objects.
      *
      * @param <TT> Object type class
      * @param query the sql query to execute, not null.
@@ -1057,7 +1057,7 @@ public class BasePeerImpl<T> implements
     }
 
     /**
-     * Selects rows from a database an maps them to objects.
+     * Selects rows from a database and maps them to objects.
      *
      * @param <TT> Object type class
      * @param query the SQL Query to execute, not null.
@@ -1082,7 +1082,7 @@ public class BasePeerImpl<T> implements
     }
 
     /**
-     * Selects rows from a database an maps them to objects.
+     * Selects rows from a database and maps them to objects.
      * This method returns a stream that <b>must</b> be closed after use.
      * All resources used by this method will be closed when the stream is
      * closed.

Modified: 
db/torque/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/recordmapper/base/dbObjectFieldGetter.vm
==============================================================================
--- 
db/torque/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/recordmapper/base/dbObjectFieldGetter.vm
       Wed Feb  4 11:36:13 2026        (r1931705)
+++ 
db/torque/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/recordmapper/base/dbObjectFieldGetter.vm
       Wed Feb  4 11:52:26 2026        (r1931706)
@@ -39,7 +39,7 @@
      *
      * @return the content of the column.
      *
-     * @throws SQLException if a problem occurs when reading
+     * @throws TorqueException if a problem occurs when reading
      *         from the resultSet.
      */
     protected $fieldType ${getter}(

Modified: 
db/torque/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/recordmapper/base/mappingStrategyPath.vm
==============================================================================
--- 
db/torque/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/recordmapper/base/mappingStrategyPath.vm
       Wed Feb  4 11:36:13 2026        (r1931705)
+++ 
db/torque/trunk/torque-templates/src/main/resources/org/apache/torque/templates/om/templates/recordmapper/base/mappingStrategyPath.vm
       Wed Feb  4 11:52:26 2026        (r1931706)
@@ -78,7 +78,8 @@
     * resultSet.next().
     * This version may also receive a MappingStrategy object to speed up
     * the processing. However, the default implementation disregards any
-    * passed strategy and simply forwards to processRow(ResultSet, int, 
Criteria). //FIXME: Fix doclink!
+    * passed strategy and simply forwards to
+    * {@link #processRow(ResultSet, int, Criteria)}.
     *
     * @param resultSet the resultSet to operate on, already pointing
     *        to the correct row. Not null.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to