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 bddf9a309 inline method (#1154) bddf9a309 is described below commit bddf9a30941a266476ef88903f634c8d26c0a14f Author: Elliotte Rusty Harold <elh...@users.noreply.github.com> AuthorDate: Wed Jan 10 14:40:50 2024 +0000 inline method (#1154) --- src/test/java/org/apache/commons/lang3/AbstractLangTest.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/test/java/org/apache/commons/lang3/AbstractLangTest.java b/src/test/java/org/apache/commons/lang3/AbstractLangTest.java index 927c9f3b1..9e3d42233 100644 --- a/src/test/java/org/apache/commons/lang3/AbstractLangTest.java +++ b/src/test/java/org/apache/commons/lang3/AbstractLangTest.java @@ -31,10 +31,6 @@ public class AbstractLangTest { */ @AfterEach public void after() { - validateNullToStringStyleRegistry(); - } - - void validateNullToStringStyleRegistry() { assertNull(ToStringStyle.getRegistry(), "Expected null, actual: " + ToStringStyle.getRegistry()); }