This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git
The following commit(s) were added to refs/heads/master by this push:
new 35e0ecf8 Javadoc
35e0ecf8 is described below
commit 35e0ecf8d0462505f2386428e18b6ecad68ce4b1
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Oct 19 09:09:51 2023 -0400
Javadoc
---
.../commons/configuration2/builder/DatabaseBuilderParametersImpl.java | 4 ++--
.../commons/configuration2/builder/DatabaseBuilderProperties.java | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/src/main/java/org/apache/commons/configuration2/builder/DatabaseBuilderParametersImpl.java
b/src/main/java/org/apache/commons/configuration2/builder/DatabaseBuilderParametersImpl.java
index 008e0672..eecc2c26 100644
---
a/src/main/java/org/apache/commons/configuration2/builder/DatabaseBuilderParametersImpl.java
+++
b/src/main/java/org/apache/commons/configuration2/builder/DatabaseBuilderParametersImpl.java
@@ -61,8 +61,8 @@ public class DatabaseBuilderParametersImpl extends
BasicBuilderParameters implem
}
@Override
- public DatabaseBuilderParametersImpl setTable(final String tname) {
- storeProperty(PROP_TABLE, tname);
+ public DatabaseBuilderParametersImpl setTable(final String tableName) {
+ storeProperty(PROP_TABLE, tableName);
return this;
}
diff --git
a/src/main/java/org/apache/commons/configuration2/builder/DatabaseBuilderProperties.java
b/src/main/java/org/apache/commons/configuration2/builder/DatabaseBuilderProperties.java
index c54a3ca0..18b23190 100644
---
a/src/main/java/org/apache/commons/configuration2/builder/DatabaseBuilderProperties.java
+++
b/src/main/java/org/apache/commons/configuration2/builder/DatabaseBuilderProperties.java
@@ -49,10 +49,10 @@ public interface DatabaseBuilderProperties<T> {
* Sets the name of the table containing configuration data. Database
configuration will access this database table.
* This is a mandatory property.
*
- * @param tname the name of the table with configuration data
+ * @param name the name of the table with configuration data
* @return a reference to this object for method chaining
*/
- T setTable(String tname);
+ T setTable(String name);
/**
* Sets the name of the table column containing configuration keys. This
is a mandatory property.