We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b906eee commit 4f35142Copy full SHA for 4f35142
1 file changed
src/main/java/org/apache/commons/cli/HelpFormatter.java
@@ -200,7 +200,7 @@ private static PrintWriter createDefaultPrintWriter() {
200
* @since 1.8.0
201
*/
202
public static String getDescription(final Option option) {
203
- String desc = option.getDescription();
+ final String desc = option.getDescription();
204
return desc == null ? "" : desc;
205
}
206
0 commit comments