fix: Remove print statements for examples (#318)

This commit is contained in:
Marcel Bochtler
2022-09-15 15:07:06 +02:00
committed by GitHub
parent 4daf6e000e
commit fdcc64d29c
2 changed files with 0 additions and 2 deletions

View File

@ -33,7 +33,6 @@ class RequestInfo private constructor(
fun examples(vararg e: Pair<String, Any>) = apply {
this.examples = e.toMap().mapValues { (_, v) -> MediaType.Example(v) }
println(this.examples)
}
fun build() = RequestInfo(

View File

@ -40,7 +40,6 @@ class ResponseInfo private constructor(
fun examples(vararg e: Pair<String, Any>) = apply {
this.examples = e.toMap().mapValues { (_, v) -> MediaType.Example(v) }
println(this.examples)
}
fun build() = ResponseInfo(