We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bf042b commit e7eedcfCopy full SHA for e7eedcf
src/main/scala/com/wordnik/swagger/codegen/Codegen.scala
@@ -388,10 +388,8 @@ class Codegen(config: CodegenConfig) {
388
val o = new ListBuffer[Map[String, String]]
389
for(i <- 0 until operation.consumes.length) {
390
val m = new HashMap[String, String]
391
- if(i < (operation.consumes.length - 1)) {
392
- println(i + ", " + operation.consumes.length)
+ if(i < (operation.consumes.length - 1))
393
m += "hasMore" -> "true"
394
- }
395
m += "mediaType" -> operation.consumes(i)
396
o += m.toMap
397
}
0 commit comments