Skip to content

Commit f001b48

Browse files
committed
Javadoc @SInCE tag should be after @return and @throws
1 parent b973d59 commit f001b48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ public Builder setLongOptPrefix(final String prefix) {
159159
* Sets the separator displayed between a options and the argument name. Typically ' ' or '='.
160160
*
161161
* @param optArgSeparator the separator.
162-
* @since 1.3
163162
* @return this
163+
* @since 1.3
164164
*/
165165
public Builder setOptArgSeparator(final String optArgSeparator) {
166166
this.optArgSeparator = Util.defaultValue(optArgSeparator, "");
@@ -195,8 +195,8 @@ public Builder setOptPrefix(final String optPrefix) {
195195
* Sets the separator displayed between a long option and short options. Typically ',' or ' '.
196196
*
197197
* @param optSeparator the separator.
198-
* @since 1.3
199198
* @return this
199+
* @since 1.3
200200
*/
201201
public Builder setOptSeparator(final String optSeparator) {
202202
this.optSeparator = Util.defaultValue(optSeparator, "");

0 commit comments

Comments
 (0)