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


The following commit(s) were added to refs/heads/master by this push:
     new edc8dcfe8 Javadoc
edc8dcfe8 is described below

commit edc8dcfe85a83ea49d76e82190672e2896fb4f65
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue May 14 09:17:59 2024 -0400

    Javadoc
---
 .../org/apache/commons/lang3/reflect/TypeUtilsTest.java     | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/lang3/reflect/TypeUtilsTest.java 
b/src/test/java/org/apache/commons/lang3/reflect/TypeUtilsTest.java
index 9ec6c9a7c..38c7add81 100644
--- a/src/test/java/org/apache/commons/lang3/reflect/TypeUtilsTest.java
+++ b/src/test/java/org/apache/commons/lang3/reflect/TypeUtilsTest.java
@@ -59,7 +59,7 @@ import org.junit.jupiter.api.Test;
 /**
  * Test fixture for https://issues.apache.org/jira/browse/LANG-1524
  *
- * @param <T> Test fixture type. 
+ * @param <T> Test fixture type, unused type parameter for test.
  */
 class AAAAClass<T extends AAAAClass.BBBBClass.CCCClass> {
     public static class BBBBClass {
@@ -75,9 +75,18 @@ final class AAAClass extends AAClass<String> {
     }
 }
 
-@SuppressWarnings("unused") // Unused type parameter for test
+/**
+ * Test fixture.
+ * 
+ * @param <T> Test fixture type, unused type parameter for test.
+ */
 class AAClass<T> {
 
+    /**
+     * Test fixture.
+     * 
+     * @param <S> Test fixture type, unused type parameter for test.
+     */
     public class BBClass<S> {
         // empty
     }

Reply via email to