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

commit d2a80a5c28f3bf72e86b3c084badaad891f03b24
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Nov 3 09:19:08 2024 -0500

    Normalize Javadoc formatting
---
 .../commons/io/serialization/MoreComplexObjectTest.java | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/io/serialization/MoreComplexObjectTest.java 
b/src/test/java/org/apache/commons/io/serialization/MoreComplexObjectTest.java
index 58ba3694c..7c67d3525 100644
--- 
a/src/test/java/org/apache/commons/io/serialization/MoreComplexObjectTest.java
+++ 
b/src/test/java/org/apache/commons/io/serialization/MoreComplexObjectTest.java
@@ -56,8 +56,8 @@ public class MoreComplexObjectTest extends 
AbstractCloseableListTest {
         inputStream = addCloseable(new 
ByteArrayInputStream(bos.toByteArray()));
     }
 
-    /** Trusting java.* is probably reasonable and avoids having to be too
-     *  detailed in the accepts.
+    /**
+     * Trusting java.* is probably reasonable and avoids having to be too 
detailed in the accepts.
      */
     @Test
     public void testTrustJavaIncludingArrays() throws IOException, 
ClassNotFoundException {
@@ -68,9 +68,9 @@ public class MoreComplexObjectTest extends 
AbstractCloseableListTest {
         ));
     }
 
-    /** Trusting java.lang.* and the array variants of that means we have
-     *  to define a number of accept classes explicitly. Quite safe but
-     *  might become a bit verbose.
+    /**
+     * Trusting java.lang.* and the array variants of that means we have to 
define a number of accept classes explicitly. Quite safe but might become a bit
+     * verbose.
      */
     @Test
     public void testTrustJavaLang() throws IOException, ClassNotFoundException 
{
@@ -81,11 +81,10 @@ public class MoreComplexObjectTest extends 
AbstractCloseableListTest {
         ));
     }
 
-    /** Here we accept everything but reject specific classes, using a pure
-     *  blacklist mode.
+    /**
+     * Here we accept everything but reject specific classes, using a pure 
blacklist mode.
      *
-     *  That's not as safe as it's hard to get an exhaustive blacklist, but
-     *  might be ok in controlled environments.
+     * That's not as safe as it's hard to get an exhaustive blacklist, but 
might be ok in controlled environments.
      */
     @Test
     public void testUseBlacklist() throws IOException, ClassNotFoundException {

Reply via email to