Repository: commons-dbcp Updated Branches: refs/heads/master cfb613652 -> 273bc3ec5
Line length 120 for Javadoc. Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/273bc3ec Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/273bc3ec Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/273bc3ec Branch: refs/heads/master Commit: 273bc3ec55764934d54006945edffd73cbc4592a Parents: cfb6136 Author: Gary Gregory <garydgreg...@gmail.com> Authored: Mon Jun 11 09:32:26 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Mon Jun 11 09:32:26 2018 -0600 ---------------------------------------------------------------------- .../dbcp2/DelegatingDatabaseMetaData.java | 31 +++++++++----------- 1 file changed, 14 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/273bc3ec/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java b/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java index 442da98..66f2bbd 100644 --- a/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java +++ b/src/main/java/org/apache/commons/dbcp2/DelegatingDatabaseMetaData.java @@ -23,12 +23,14 @@ import java.sql.RowIdLifetime; import java.sql.SQLException; /** - * <p>A base delegating implementation of {@link DatabaseMetaData}.</p> - * - * <p>Methods that create {@link ResultSet} objects are wrapped to - * create {@link DelegatingResultSet} objects and the remaining methods - * simply call the corresponding method on the "delegate" - * provided in the constructor.</p> + * <p> + * A base delegating implementation of {@link DatabaseMetaData}. + * </p> + * <p> + * Methods that create {@link ResultSet} objects are wrapped to create {@link DelegatingResultSet} objects and the + * remaining methods simply call the corresponding method on the "delegate" provided in the constructor. + * </p> + * * @since 2.0 */ public class DelegatingDatabaseMetaData implements DatabaseMetaData { @@ -63,20 +65,15 @@ public class DelegatingDatabaseMetaData implements DatabaseMetaData { } /** - * If my underlying {@link ResultSet} is not a - * {@code DelegatingResultSet}, returns it, - * otherwise recursively invokes this method on - * my delegate. + * If my underlying {@link ResultSet} is not a {@code DelegatingResultSet}, returns it, otherwise recursively + * invokes this method on my delegate. * <p> - * Hence this method will return the first - * delegate that is not a {@code DelegatingResultSet}, - * or {@code null} when no non-{@code DelegatingResultSet} - * delegate can be found by traversing this chain. + * Hence this method will return the first delegate that is not a {@code DelegatingResultSet}, or {@code null} when + * no non-{@code DelegatingResultSet} delegate can be found by traversing this chain. * </p> * <p> - * This method is useful when you may have nested - * {@code DelegatingResultSet}s, and you want to make - * sure to obtain a "genuine" {@link ResultSet}. + * This method is useful when you may have nested {@code DelegatingResultSet}s, and you want to make sure to obtain + * a "genuine" {@link ResultSet}. * </p> * * @return the innermost database meta data.