removed printlns

This commit is contained in:
Tony Tam 2014-03-05 07:54:12 -08:00
parent 8bf042b153
commit e7eedcf48d

View File

@ -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
}