Turning @Output required to false

By default all output is assigned to stdout if a -o is not provided. Technically this makes @Output a not required parameter, and the documentation is misleading because it's reading from the annotation.
GSA-820 #resolve
This commit is contained in:
Mauricio Carneiro 2013-03-05 17:25:52 -05:00
parent f10723df3b
commit e2d41f0282
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public @interface Output {
* fail if the type can't be populated.
* @return True if the argument is required. False otherwise.
*/
boolean required() default true;
boolean required() default false;
/**
* Should this command-line argument be exclusive of others. Should be