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-cli.git
The following commit(s) were added to refs/heads/master by this push:
new 55dea5a Format: "catch(" -> "catch ("
55dea5a is described below
commit 55dea5ad7fb62f87caeb25ecb933bd01c013b48e
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Apr 18 10:32:06 2023 -0400
Format: "catch(" -> "catch ("
---
src/test/java/org/apache/commons/cli/ValuesTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/test/java/org/apache/commons/cli/ValuesTest.java
b/src/test/java/org/apache/commons/cli/ValuesTest.java
index 2e0928b..392715b 100644
--- a/src/test/java/org/apache/commons/cli/ValuesTest.java
+++ b/src/test/java/org/apache/commons/cli/ValuesTest.java
@@ -144,12 +144,12 @@ public class ValuesTest {
* _option.getValue(), "key"); assertEquals(_option.getValue(0), "key");
assertEquals(_option.getValue(1),
* "value");
*
- * try { assertEquals(_option.getValue(2), "key"); fail("IndexOutOfBounds
not caught"); } catch(
+ * try { assertEquals(_option.getValue(2), "key"); fail("IndexOutOfBounds
not caught"); } catch (
* IndexOutOfBoundsException exp) {
*
* }
*
- * try { assertEquals(_option.getValue(-1), "key"); fail("IndexOutOfBounds
not caught"); } catch(
+ * try { assertEquals(_option.getValue(-1), "key"); fail("IndexOutOfBounds
not caught"); } catch (
* IndexOutOfBoundsException exp) {
*
* } }