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 7cad9c3ef8b2f6a71eae9434cf55e93aecf60d6a
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Sep 12 10:17:23 2024 -0400

    Remove redundant syntax
---
 .../lang3/builder/ReflectionToStringBuilderConcurrencyTest.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/lang3/builder/ReflectionToStringBuilderConcurrencyTest.java
 
b/src/test/java/org/apache/commons/lang3/builder/ReflectionToStringBuilderConcurrencyTest.java
index cb41d3e58..cccbd0a1a 100644
--- 
a/src/test/java/org/apache/commons/lang3/builder/ReflectionToStringBuilderConcurrencyTest.java
+++ 
b/src/test/java/org/apache/commons/lang3/builder/ReflectionToStringBuilderConcurrencyTest.java
@@ -65,7 +65,7 @@ public class ReflectionToStringBuilderConcurrencyTest extends 
AbstractLangTest {
     @Test
     @Disabled
     public void testArrayList() throws InterruptedException {
-        this.testConcurrency(new CollectionHolder<>(new ArrayList<>()));
+        testConcurrency(new CollectionHolder<>(new ArrayList<>()));
     }
 
     private void testConcurrency(final CollectionHolder<List<Integer>> holder) 
throws InterruptedException {
@@ -106,12 +106,12 @@ public class ReflectionToStringBuilderConcurrencyTest 
extends AbstractLangTest {
     @Test
     @Disabled
     public void testCopyOnWriteArrayList() throws InterruptedException {
-        this.testConcurrency(new CollectionHolder<>(new 
CopyOnWriteArrayList<>()));
+        testConcurrency(new CollectionHolder<>(new CopyOnWriteArrayList<>()));
     }
 
     @Test
     @Disabled
     public void testLinkedList() throws InterruptedException {
-        this.testConcurrency(new CollectionHolder<>(new LinkedList<>()));
+        testConcurrency(new CollectionHolder<>(new LinkedList<>()));
     }
 }

Reply via email to