Skip to content

Commit 55dea5a

Browse files
committed
Format: "catch(" -> "catch ("
1 parent d7ff719 commit 55dea5a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/cli/ValuesTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@ public void testTwoArgValues() {
144144
* _option.getValue(), "key"); assertEquals(_option.getValue(0), "key"); assertEquals(_option.getValue(1),
145145
* "value");
146146
*
147-
* try { assertEquals(_option.getValue(2), "key"); fail("IndexOutOfBounds not caught"); } catch(
147+
* try { assertEquals(_option.getValue(2), "key"); fail("IndexOutOfBounds not caught"); } catch (
148148
* IndexOutOfBoundsException exp) {
149149
*
150150
* }
151151
*
152-
* try { assertEquals(_option.getValue(-1), "key"); fail("IndexOutOfBounds not caught"); } catch(
152+
* try { assertEquals(_option.getValue(-1), "key"); fail("IndexOutOfBounds not caught"); } catch (
153153
* IndexOutOfBoundsException exp) {
154154
*
155155
* } }

0 commit comments

Comments
 (0)