Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
Use final
  • Loading branch information
garydgregory committed Nov 11, 2024
1 parent e1f7b4f commit 47a0c8c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/test/java/org/apache/commons/collections4/BulkTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@
*/
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.
Expand All @@ -48,7 +48,7 @@ public 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;
Expand All @@ -57,7 +57,7 @@ public String getName() {
/**
* 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() {
Expand Down

0 comments on commit 47a0c8c

Please sign in to comment.