Skip to content

Commit e7eedcf

Browse files
committed
removed printlns
1 parent 8bf042b commit e7eedcf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/scala/com/wordnik/swagger/codegen/Codegen.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,10 +388,8 @@ class Codegen(config: CodegenConfig) {
388388
val o = new ListBuffer[Map[String, String]]
389389
for(i <- 0 until operation.consumes.length) {
390390
val m = new HashMap[String, String]
391-
if(i < (operation.consumes.length - 1)) {
392-
println(i + ", " + operation.consumes.length)
391+
if(i < (operation.consumes.length - 1))
393392
m += "hasMore" -> "true"
394-
}
395393
m += "mediaType" -> operation.consumes(i)
396394
o += m.toMap
397395
}

0 commit comments

Comments
 (0)