diff --git a/jOOQ/src/main/java/org/jooq/tools/jdbc/JDBCUtils.java b/jOOQ/src/main/java/org/jooq/tools/jdbc/JDBCUtils.java index 2bf4e66ed8..b16b41c5c7 100644 --- a/jOOQ/src/main/java/org/jooq/tools/jdbc/JDBCUtils.java +++ b/jOOQ/src/main/java/org/jooq/tools/jdbc/JDBCUtils.java @@ -159,7 +159,7 @@ public class JDBCUtils { } /** - * Safely close a statement + * Safely close a statement. *
* This method will silently ignore if statement is
* null, or if {@link Statement#close()} throws an exception.
@@ -174,7 +174,7 @@ public class JDBCUtils {
}
/**
- * Safely close a result set
+ * Safely close a result set.
*
* This method will silently ignore if resultSet is
* null, or if {@link ResultSet#close()} throws an exception.
@@ -189,7 +189,7 @@ public class JDBCUtils {
}
/**
- * Safely close a result set and / or a statement
+ * Safely close a result set and / or a statement.
*
* This method will silently ignore if resultSet or
* statement is null, or if
@@ -202,7 +202,7 @@ public class JDBCUtils {
}
/**
- * Safely free a blob
+ * Safely free a blob.
*
* This method will silently ignore if blob is
* null, or if {@link Blob#free()} throws an exception.
@@ -217,7 +217,7 @@ public class JDBCUtils {
}
/**
- * Safely free a clob
+ * Safely free a clob.
*
* This method will silently ignore if clob is
* null, or if {@link Clob#free()} throws an exception.
@@ -232,7 +232,7 @@ public class JDBCUtils {
}
/**
- * Convenient way to check if a JDBC-originated record was null
+ * Convenient way to check if a JDBC-originated record was null.
*
* This is useful to check if primitive types obtained from the JDBC API
* were actually SQL NULL values.
@@ -247,7 +247,7 @@ public class JDBCUtils {
}
/**
- * Convenient way to check if a JDBC-originated record was null
+ * Convenient way to check if a JDBC-originated record was null.
*
* This is useful to check if primitive types obtained from the JDBC API
* were actually SQL NULL values.
@@ -262,7 +262,7 @@ public class JDBCUtils {
}
/**
- * Convenient way to check if a JDBC-originated record was null
+ * Convenient way to check if a JDBC-originated record was null.
*
* This is useful to check if primitive types obtained from the JDBC API * were actually SQL NULL values. @@ -277,7 +277,7 @@ public class JDBCUtils { } /** - * No instances + * No instances. */ private JDBCUtils() {} }