Skip to content

Commit 2442fa4

Browse files
committed
Use final.
1 parent ee2af72 commit 2442fa4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/cli/help/HelpFormatter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public TableDefinition getTableDefinition(final Iterable<Option> options) {
198198
rows.add(row);
199199
});
200200
// return the TableDefinition with the proper column headers.
201-
List<String> headers = new ArrayList<>(3);
201+
final List<String> headers = new ArrayList<>(3);
202202
headers.add(LABEL_OPTIONS);
203203
if (showSince) {
204204
headers.add(LABEL_SINCE);

0 commit comments

Comments
 (0)