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 a9f02bc64e0535ec05ca851dcd3989f186988d24 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Sep 12 10:17:32 2024 -0400 Remove redundant syntax --- .../ReflectionToStringBuilderExcludeTest.java | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/test/java/org/apache/commons/lang3/builder/ReflectionToStringBuilderExcludeTest.java b/src/test/java/org/apache/commons/lang3/builder/ReflectionToStringBuilderExcludeTest.java index 7ca29394e..76b9b8057 100644 --- a/src/test/java/org/apache/commons/lang3/builder/ReflectionToStringBuilderExcludeTest.java +++ b/src/test/java/org/apache/commons/lang3/builder/ReflectionToStringBuilderExcludeTest.java @@ -51,25 +51,25 @@ public class ReflectionToStringBuilderExcludeTest extends AbstractLangTest { @Test public void test_toStringExclude() { final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), SECRET_FIELD); - this.validateSecretFieldAbsent(toString); + validateSecretFieldAbsent(toString); } @Test public void test_toStringExcludeArray() { final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), SECRET_FIELD); - this.validateSecretFieldAbsent(toString); + validateSecretFieldAbsent(toString); } @Test public void test_toStringExcludeArrayWithNull() { final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), new String[]{null}); - this.validateSecretFieldPresent(toString); + validateSecretFieldPresent(toString); } @Test public void test_toStringExcludeArrayWithNulls() { final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), null, null); - this.validateSecretFieldPresent(toString); + validateSecretFieldPresent(toString); } @Test @@ -77,7 +77,7 @@ public class ReflectionToStringBuilderExcludeTest extends AbstractLangTest { final List<String> excludeList = new ArrayList<>(); excludeList.add(SECRET_FIELD); final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), excludeList); - this.validateSecretFieldAbsent(toString); + validateSecretFieldAbsent(toString); } @Test @@ -85,7 +85,7 @@ public class ReflectionToStringBuilderExcludeTest extends AbstractLangTest { final List<String> excludeList = new ArrayList<>(); excludeList.add(null); final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), excludeList); - this.validateSecretFieldPresent(toString); + validateSecretFieldPresent(toString); } @Test @@ -94,31 +94,31 @@ public class ReflectionToStringBuilderExcludeTest extends AbstractLangTest { excludeList.add(null); excludeList.add(null); final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), excludeList); - this.validateSecretFieldPresent(toString); + validateSecretFieldPresent(toString); } @Test public void test_toStringExcludeEmptyArray() { final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), ArrayUtils.EMPTY_STRING_ARRAY); - this.validateSecretFieldPresent(toString); + validateSecretFieldPresent(toString); } @Test public void test_toStringExcludeEmptyCollection() { final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), new ArrayList<>()); - this.validateSecretFieldPresent(toString); + validateSecretFieldPresent(toString); } @Test public void test_toStringExcludeNullArray() { final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), (String[]) null); - this.validateSecretFieldPresent(toString); + validateSecretFieldPresent(toString); } @Test public void test_toStringExcludeNullCollection() { final String toString = ReflectionToStringBuilder.toStringExclude(new TestFixture(), (Collection<String>) null); - this.validateSecretFieldPresent(toString); + validateSecretFieldPresent(toString); } private void validateNonSecretField(final String toString) { @@ -128,11 +128,11 @@ public class ReflectionToStringBuilderExcludeTest extends AbstractLangTest { private void validateSecretFieldAbsent(final String toString) { assertEquals(ArrayUtils.INDEX_NOT_FOUND, toString.indexOf(SECRET_VALUE)); - this.validateNonSecretField(toString); + validateNonSecretField(toString); } private void validateSecretFieldPresent(final String toString) { assertTrue(toString.indexOf(SECRET_VALUE) > 0); - this.validateNonSecretField(toString); + validateNonSecretField(toString); } }