mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 10:58:55 +00:00
removed printlns
This commit is contained in:
parent
8bf042b153
commit
e7eedcf48d
@ -388,10 +388,8 @@ class Codegen(config: CodegenConfig) {
|
||||
val o = new ListBuffer[Map[String, String]]
|
||||
for(i <- 0 until operation.consumes.length) {
|
||||
val m = new HashMap[String, String]
|
||||
if(i < (operation.consumes.length - 1)) {
|
||||
println(i + ", " + operation.consumes.length)
|
||||
if(i < (operation.consumes.length - 1))
|
||||
m += "hasMore" -> "true"
|
||||
}
|
||||
m += "mediaType" -> operation.consumes(i)
|
||||
o += m.toMap
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user