Skip to content

Commit 4c6404c

Browse files
committed
Better parameter name
1 parent d6c2e6b commit 4c6404c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,13 +326,13 @@ public HelpFormatter() {
326326

327327
/**
328328
* Constructs a new instance.
329-
* @param printStream TODO
329+
* @param printWriter TODO
330330
*/
331-
private HelpFormatter(final Function<Option, String> deprecatedFormatFunc, final PrintWriter printStream, final boolean showSince) {
331+
private HelpFormatter(final Function<Option, String> deprecatedFormatFunc, final PrintWriter printWriter, final boolean showSince) {
332332
// TODO All other instance HelpFormatter instance variables.
333333
// Make HelpFormatter immutable for 2.0
334334
this.deprecatedFormatFunc = deprecatedFormatFunc;
335-
this.printWriter = printStream;
335+
this.printWriter = printWriter;
336336
this.showSince = showSince;
337337
}
338338

0 commit comments

Comments
 (0)