Skip to content

Commit 47a0c8c

Browse files
committed
Javadoc
Use final
1 parent e1f7b4f commit 47a0c8c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/test/java/org/apache/commons/collections4/BulkTest.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@
2121
*/
2222
public class BulkTest {
2323

24-
/** Path to test data resources */
24+
/** Path to test data resources. */
2525
protected static final String TEST_DATA_PATH = "src/test/resources/org/apache/commons/collections4/data/test/";
2626

27-
/** Path to test properties resources */
27+
/** Path to test properties resources. */
2828
public static final String TEST_PROPERTIES_PATH = "src/test/resources/org/apache/commons/collections4/properties/";
2929

3030
/**
3131
* The full name of this bulk test instance.
3232
*/
33-
private String verboseName;
33+
private final String verboseName;
3434

3535
/**
36-
* the name of the simple test method
36+
* The name of the simple test method.
3737
*/
38-
private String name;
38+
private final String name;
3939

4040
/**
4141
* Constructs a new {@code BulkTest} instance that will run the specified simple test.
@@ -48,7 +48,7 @@ public BulkTest() {
4848
/**
4949
* Gets the name of the simple test method of this {@code BulkTest}.
5050
*
51-
* @return the name of the simple test method of this {@code BulkTest}
51+
* @return the name of the simple test method of this {@code BulkTest}.
5252
*/
5353
public String getName() {
5454
return name;
@@ -57,7 +57,7 @@ public String getName() {
5757
/**
5858
* Gets the display name of this {@code BulkTest}.
5959
*
60-
* @return the display name of this {@code BulkTest}
60+
* @return the display name of this {@code BulkTest}.
6161
*/
6262
@Override
6363
public String toString() {

0 commit comments

Comments
 (0)