File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
modules/swagger-codegen-cli/src/main/java/io/swagger/codegen Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -141,15 +141,11 @@ public static void main(String[] args) {
141
141
BeanUtils .populate (commandObject , optionValueMap );
142
142
143
143
if (codegenArguments != null && !codegenArguments .isEmpty () && commandObject instanceof Generate ) {
144
- System .out .println (".................... ok ok ok " );
145
144
codegenArguments = codegenArguments .stream ()
146
145
.filter (codegenArgument -> {
147
146
final String option = CLIHelper .fixOptionName (codegenArgument .getOption ());
148
147
final String optionValue = String .valueOf (inputArgs .get (option ));
149
148
150
- System .out .println ("++++++++++++++++++ option: " + option );
151
- System .out .println ("++++++++++++++++++ value: " + optionValue );
152
-
153
149
if (StringUtils .isNotBlank (optionValue ) && !"null" .equalsIgnoreCase (optionValue )) {
154
150
codegenArgument .setValue (optionValue );
155
151
return true ;
@@ -160,7 +156,6 @@ public static void main(String[] args) {
160
156
.collect (Collectors .toList ());
161
157
162
158
Generate generateCommand = (Generate ) commandObject ;
163
- System .out .println ("::::::::::::::::::::::::::::::::::::::::::::::::: size: " + codegenArguments .size ());
164
159
generateCommand .setCodegenArguments (codegenArguments );
165
160
}
166
161
You can’t perform that action at this time.
0 commit comments