forked from loafle/openapi-generator-original
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]]
|
val o = new ListBuffer[Map[String, String]]
|
||||||
for(i <- 0 until operation.consumes.length) {
|
for(i <- 0 until operation.consumes.length) {
|
||||||
val m = new HashMap[String, String]
|
val m = new HashMap[String, String]
|
||||||
if(i < (operation.consumes.length - 1)) {
|
if(i < (operation.consumes.length - 1))
|
||||||
println(i + ", " + operation.consumes.length)
|
|
||||||
m += "hasMore" -> "true"
|
m += "hasMore" -> "true"
|
||||||
}
|
|
||||||
m += "mediaType" -> operation.consumes(i)
|
m += "mediaType" -> operation.consumes(i)
|
||||||
o += m.toMap
|
o += m.toMap
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user