@@ -240,9 +240,9 @@ public Map<String, Object> postProcessOperationsWithModels(Map<String, Object> o
240
240
// Converts GET /foo/bar => get("foo" :: "bar")
241
241
generateScalaPath (op );
242
242
243
- // Generates e.g. uuid :: header("boo") :: params("baa") under key "x-codegen-pathParams "
244
- // Generates e.g. (id: UUID, headerBoo: String, paramBaa: String) under key "x-codegen-typedInputParams "
245
- // Generates e.g. (id, headerBoo, paramBaa) under key "x-codegen-inputParams "
243
+ // Generates e.g. uuid :: header("boo") :: params("baa") under key "x-codegen-path-params "
244
+ // Generates e.g. (id: UUID, headerBoo: String, paramBaa: String) under key "x-codegen-typed-input-params "
245
+ // Generates e.g. (id, headerBoo, paramBaa) under key "x-codegen-input-params "
246
246
generateInputParameters (op );
247
247
248
248
//Generate Auth parameters using security: definition
@@ -407,9 +407,9 @@ private void generateScalaPath(CodegenOperation op) {
407
407
408
408
409
409
private void concatParameters (CodegenOperation op ) {
410
- String path = colConcat (colConcat (op .vendorExtensions .get ("x-codegen-path" ).toString (), op .vendorExtensions .get ("x-codegen-pathParams " ).toString ()), op .vendorExtensions .get ("x-codegen-authParams " ).toString ());
411
- String parameters = csvConcat (op .vendorExtensions .get ("x-codegen-inputParams " ).toString (), op .vendorExtensions .get ("x-codegen-authInputParams " ).toString ());
412
- String typedParameters = csvConcat (op .vendorExtensions .get ("x-codegen-typedInputParams " ).toString (), op .vendorExtensions .get ("x-codegen-typedAuthInputParams " ).toString ());
410
+ String path = colConcat (colConcat (op .vendorExtensions .get ("x-codegen-path" ).toString (), op .vendorExtensions .get ("x-codegen-path-params " ).toString ()), op .vendorExtensions .get ("x-codegen-auth-params " ).toString ());
411
+ String parameters = csvConcat (op .vendorExtensions .get ("x-codegen-input-params " ).toString (), op .vendorExtensions .get ("x-codegen-auth-input-params " ).toString ());
412
+ String typedParameters = csvConcat (op .vendorExtensions .get ("x-codegen-typed-input-params " ).toString (), op .vendorExtensions .get ("x-codegen-typed-auth-input-params " ).toString ());
413
413
414
414
// The input parameters for functions
415
415
op .vendorExtensions .put ("x-codegen-paths" , path );
0 commit comments