Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions src/main/java/org/apache/commons/cli/help/HelpFormatter.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,6 @@ Licensed to the Apache Software Foundation (ASF) under one or more
*/
public class HelpFormatter extends AbstractHelpFormatter {

/**
* The default "Since" column label.
*/
private static final String LABEL_SINCE = "Since";

/**
* The default "Description" column label.
*/
private static final String LABEL_DESCRIPTION = "Description";

/**
* The default "Options" column label.
*/
private static final String LABEL_OPTIONS = "Options";

/**
* A builder for the HelpFormatter. Intended to make more complex uses of the HelpFormatter class easier. Default values are:
* <ul>
Expand Down Expand Up @@ -116,6 +101,21 @@ public Builder setShowSince(final boolean showSince) {
}
}

/**
* The default "Since" column label.
*/
private static final String LABEL_SINCE = "Since";

/**
* The default "Description" column label.
*/
private static final String LABEL_DESCRIPTION = "Description";

/**
* The default "Options" column label.
*/
private static final String LABEL_OPTIONS = "Options";

/**
* Default number of characters per line: {@value}.
*/
Expand Down