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