From 99bd30c676667a534b9184696e8386982a4839eb Mon Sep 17 00:00:00 2001 From: Sergejs Visockis Date: Sun, 31 Mar 2024 22:49:26 +0200 Subject: [PATCH] fix type (#79) --- .../src/main/java/com/iluwatar/activerecord/RecordBase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/active-record/src/main/java/com/iluwatar/activerecord/RecordBase.java b/active-record/src/main/java/com/iluwatar/activerecord/RecordBase.java index cd6e83765231..d03b7099ba34 100644 --- a/active-record/src/main/java/com/iluwatar/activerecord/RecordBase.java +++ b/active-record/src/main/java/com/iluwatar/activerecord/RecordBase.java @@ -40,7 +40,7 @@ public static void setDataSource(DataSource dataSource) { } /** - * Get an SQL exception for the sake of all other internal persistence methods. + * Get a database connection. * * @return the connection {@link Connection}. */ @@ -53,7 +53,7 @@ protected Connection getConnection() { } /** - * Returns an underlying table name defined within the domain model. + * A database table name of the underlying domain model. * * @return the table name. */