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-collections.git
The following commit(s) were added to refs/heads/master by this push:
new 47a0c8cd6 Javadoc
47a0c8cd6 is described below
commit 47a0c8cd618ee33d091aafbfde5584ad4fcdfe55
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Nov 11 10:01:45 2024 -0500
Javadoc
Use final
---
.../java/org/apache/commons/collections4/BulkTest.java | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/test/java/org/apache/commons/collections4/BulkTest.java
b/src/test/java/org/apache/commons/collections4/BulkTest.java
index 561a322cf..e798a029b 100644
--- a/src/test/java/org/apache/commons/collections4/BulkTest.java
+++ b/src/test/java/org/apache/commons/collections4/BulkTest.java
@@ -21,21 +21,21 @@ package org.apache.commons.collections4;
*/
public class BulkTest {
- /** Path to test data resources */
+ /** Path to test data resources. */
protected static final String TEST_DATA_PATH =
"src/test/resources/org/apache/commons/collections4/data/test/";
- /** Path to test properties resources */
+ /** Path to test properties resources. */
public static final String TEST_PROPERTIES_PATH =
"src/test/resources/org/apache/commons/collections4/properties/";
/**
* The full name of this bulk test instance.
*/
- private String verboseName;
+ private final String verboseName;
/**
- * the name of the simple test method
+ * The name of the simple test method.
*/
- private String name;
+ private final String name;
/**
* Constructs a new {@code BulkTest} instance that will run the specified
simple test.
@@ -48,7 +48,7 @@ public class BulkTest {
/**
* Gets the name of the simple test method of this {@code BulkTest}.
*
- * @return the name of the simple test method of this {@code BulkTest}
+ * @return the name of the simple test method of this {@code BulkTest}.
*/
public String getName() {
return name;
@@ -57,7 +57,7 @@ public class BulkTest {
/**
* Gets the display name of this {@code BulkTest}.
*
- * @return the display name of this {@code BulkTest}
+ * @return the display name of this {@code BulkTest}.
*/
@Override
public String toString() {