You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/07/05 16:10:19 UTC

[commons-lang] 02/02: Javadoc and format nit

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-lang.git

commit ae65d3b2559e9c3cdce3f4285135719c119be295
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jul 5 12:10:08 2022 -0400

    Javadoc and format nit
---
 .../java/org/apache/commons/lang3/builder/ToStringBuilderTest.java     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java b/src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java
index dfe8c49fe..50feab27a 100644
--- a/src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java
+++ b/src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java
@@ -40,7 +40,7 @@ public class ToStringBuilderTest {
     private final Integer base = Integer.valueOf(5);
     private final String baseStr = base.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(base));
 
-    /*
+    /**
      * All tests should leave the registry empty.
      */
     @AfterEach
@@ -48,7 +48,6 @@ public class ToStringBuilderTest {
         validateNullToStringStyleRegistry();
     }
 
-
     @Test
     public void testConstructorEx1() {
         assertEquals("<null>", new ToStringBuilder(null).toString());