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-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d77ecb0b Format: "catch(" -> "catch ("
8d77ecb0b is described below

commit 8d77ecb0b3a0ae75c2eecaf8c288aac1f0a5eef3
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Apr 18 10:32:35 2023 -0400

    Format: "catch(" -> "catch ("
---
 .../org/apache/commons/collections4/list/CursorableLinkedListTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/collections4/list/CursorableLinkedListTest.java
 
b/src/test/java/org/apache/commons/collections4/list/CursorableLinkedListTest.java
index 2cc1f53d6..0fd6660a6 100644
--- 
a/src/test/java/org/apache/commons/collections4/list/CursorableLinkedListTest.java
+++ 
b/src/test/java/org/apache/commons/collections4/list/CursorableLinkedListTest.java
@@ -1095,7 +1095,7 @@ public class CursorableLinkedListTest<E> extends 
AbstractLinkedListTest<E> {
         final ListIterator<E> it = list.listIterator();
         try {
             it.remove();
-        } catch(final IllegalStateException e) {
+        } catch (final IllegalStateException e) {
             // expected
         }
         assertEquals("1", it.next());

Reply via email to