Skip to content

Commit

Permalink
No need for blank Javadoc lines between Javadoc @ tags
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 28, 2024
1 parent 7ab9ae4 commit a485584
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 18 deletions.
5 changes: 0 additions & 5 deletions src/main/java/org/apache/commons/dbutils/BeanProcessor.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
* </p>
*
* @see BasicRowProcessor
*
* @since 1.1
*/
public class BeanProcessor {
Expand Down Expand Up @@ -211,9 +210,7 @@ private boolean isCompatibleType(final Object value, final Class<?> type) {
* information.
*
* @param props The bean property descriptors.
*
* @throws SQLException if a database access error occurs
*
* @return An int[] with column index to property index mappings. The 0th
* element is meaningless because JDBC column indexing starts at 1.
*/
Expand Down Expand Up @@ -384,12 +381,10 @@ private <T> T populateBean(final ResultSet resultSet, final T bean,
* positioned on a valid row before being passed into this method.
*
* @param index The current column index being processed.
*
* @param propType The bean property type that this column needs to be
* converted into.
*
* @throws SQLException if a database access error occurs
*
* @return The object from the {@code ResultSet} at the given column
* index after optional type processing or {@code null} if the column
* value was SQL NULL.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public ArrayListHandler(final RowProcessor convert) {
* Convert row's columns into an {@code Object[]}.
* @param resultSet {@code ResultSet} to process.
* @return {@code Object[]}, never {@code null}.
*
* @throws SQLException if a database access error occurs
* @see org.apache.commons.dbutils.handlers.AbstractListHandler#handle(ResultSet)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,7 @@ public BeanListHandler(final Class<? extends T> type, final RowProcessor convert
* the {@code Class} given in the constructor.
*
* @param resultSet The {@code ResultSet} to handle.
*
* @return A List of beans, never {@code null}.
*
* @throws SQLException if a database access error occurs
* @see org.apache.commons.dbutils.RowProcessor#toBeanList(ResultSet, Class)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,9 @@ public BeanMapHandler(final Class<V> type, final String columnName) {
* This factory method is called by {@code handle()} to retrieve the
* key value from the current {@code ResultSet} row.
* @param resultSet ResultSet to create a key from
*
* @return K from the configured key column name/index
*
* @throws SQLException if a database access error occurs
* @throws ClassCastException if the class datatype does not match the column type
*
* @see org.apache.commons.dbutils.handlers.AbstractKeyedHandler#createKey(ResultSet)
*/
// We assume that the user has picked the correct type to match the column
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,8 @@ public ColumnListHandler(final String columnName) {
* Returns one {@code ResultSet} column value as {@code Object}.
* @param resultSet {@code ResultSet} to process.
* @return {@code Object}, never {@code null}.
*
* @throws SQLException if a database access error occurs
* @throws ClassCastException if the class datatype does not match the column type
*
* @see org.apache.commons.dbutils.handlers.AbstractListHandler#handle(ResultSet)
*/
// We assume that the user has picked the correct type to match the column
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ public KeyedHandler(final String columnName) {
* configured key column name or index.
* @param rs ResultSet to create a key from
* @return Object from the configured key column name/index
*
* @throws SQLException if a database access error occurs
* @throws ClassCastException if the class datatype does not match the column type
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ public MapHandler(final RowProcessor convert) {
* {@code null} if there are no rows in the {@code ResultSet}.
*
* @throws SQLException if a database access error occurs
*
* @see org.apache.commons.dbutils.ResultSetHandler#handle(java.sql.ResultSet)
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ public MapListHandler(final RowProcessor convert) {
* Converts the {@code ResultSet} row into a {@code Map} object.
* @param resultSet {@code ResultSet} to process.
* @return A {@code Map}, never null.
*
* @throws SQLException if a database access error occurs
*
* @see org.apache.commons.dbutils.handlers.AbstractListHandler#handle(ResultSet)
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ public ScalarHandler(final String columnName) {
*
* @throws SQLException if a database access error occurs
* @throws ClassCastException if the class datatype does not match the column type
*
* @see org.apache.commons.dbutils.ResultSetHandler#handle(java.sql.ResultSet)
*/
// We assume that the user has picked the correct type to match the column
Expand Down

0 comments on commit a485584

Please sign in to comment.