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 f3346dd0675b81127c02d65af46d208e1e8d8e94 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 20 21:45:19 2020 -0500 Fix ctor call. --- src/test/java/org/apache/commons/lang3/reflect/TypeUtilsTest.java | 1 + 1 file changed, 1 insertion(+) 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 1147e5f..8cdce0b 100644 --- a/src/test/java/org/apache/commons/lang3/reflect/TypeUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/reflect/TypeUtilsTest.java @@ -97,6 +97,7 @@ class AClass extends AAClass<String>.BBClass<Number> { public GClass gClass; AClass(final AAClass<String> enclosingInstance) { + enclosingInstance.super(); } }