Skip to content

Commit 173c31d

Browse files
committed
Normalize local variable naming
1 parent bd9b862 commit 173c31d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/test/java/org/apache/commons/cli/bug/BugCLI162Test.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -301,14 +301,14 @@ public void testPrintHelpLongLines() {
301301
//@formatter:on
302302
commandLineOptions.addOption(option);
303303
//
304-
final OptionGroup pOutTypesOptionGroup = new OptionGroup();
305-
final String pOutTypesOptionGroupDoc = OPT + OPT_PARAM_TYPES_INT + " and " + OPT + OPT_PARAM_TYPES_NAME + " are mutually exclusive.";
304+
final OptionGroup outTypesOptionGroup = new OptionGroup();
305+
final String outTypesOptionGroupDoc = OPT + OPT_PARAM_TYPES_INT + " and " + OPT + OPT_PARAM_TYPES_NAME + " are mutually exclusive.";
306306
final String typesClassName = Types.class.getName();
307307
//@formatter:off
308308
option = new Option(OPT_PARAM_TYPES_INT, "paramTypes", true, "Parameter types from "
309309
+ typesClassName
310310
+ ". "
311-
+ pOutTypesOptionGroupDoc
311+
+ outTypesOptionGroupDoc
312312
+ " Example: "
313313
+ OPT
314314
+ OPT_PARAM_TYPES_INT
@@ -319,14 +319,14 @@ public void testPrintHelpLongLines() {
319319
option = new Option(OPT_PARAM_TYPES_NAME, "paramTypeNames", true, "Parameter "
320320
+ typesClassName
321321
+ " names. "
322-
+ pOutTypesOptionGroupDoc
322+
+ outTypesOptionGroupDoc
323323
+ " Example: "
324324
+ OPT
325325
+ OPT_PARAM_TYPES_NAME
326326
+ " \"CURSOR VARCHAR\"");
327327
//@formatter:on
328328
commandLineOptions.addOption(option);
329-
commandLineOptions.addOptionGroup(pOutTypesOptionGroup);
329+
commandLineOptions.addOptionGroup(outTypesOptionGroup);
330330
//
331331
final OptionGroup modesOptionGroup = new OptionGroup();
332332
final String modesOptionGroupDoc = OPT + OPT_PARAM_MODES_INT + " and " + OPT + OPT_PARAM_MODES_NAME + " are mutually exclusive.";

0 commit comments

Comments
 (0)