From fdcc64d29c3881143721f9f555391f086c67cdde Mon Sep 17 00:00:00 2001 From: Marcel Bochtler Date: Thu, 15 Sep 2022 15:07:06 +0200 Subject: [PATCH] fix: Remove print statements for examples (#318) --- .../main/kotlin/io/bkbn/kompendium/core/metadata/RequestInfo.kt | 1 - .../main/kotlin/io/bkbn/kompendium/core/metadata/ResponseInfo.kt | 1 - 2 files changed, 2 deletions(-) diff --git a/core/src/main/kotlin/io/bkbn/kompendium/core/metadata/RequestInfo.kt b/core/src/main/kotlin/io/bkbn/kompendium/core/metadata/RequestInfo.kt index b1dee885f..49abbf696 100644 --- a/core/src/main/kotlin/io/bkbn/kompendium/core/metadata/RequestInfo.kt +++ b/core/src/main/kotlin/io/bkbn/kompendium/core/metadata/RequestInfo.kt @@ -33,7 +33,6 @@ class RequestInfo private constructor( fun examples(vararg e: Pair) = apply { this.examples = e.toMap().mapValues { (_, v) -> MediaType.Example(v) } - println(this.examples) } fun build() = RequestInfo( diff --git a/core/src/main/kotlin/io/bkbn/kompendium/core/metadata/ResponseInfo.kt b/core/src/main/kotlin/io/bkbn/kompendium/core/metadata/ResponseInfo.kt index 74daa24a0..85c04c096 100644 --- a/core/src/main/kotlin/io/bkbn/kompendium/core/metadata/ResponseInfo.kt +++ b/core/src/main/kotlin/io/bkbn/kompendium/core/metadata/ResponseInfo.kt @@ -40,7 +40,6 @@ class ResponseInfo private constructor( fun examples(vararg e: Pair) = apply { this.examples = e.toMap().mapValues { (_, v) -> MediaType.Example(v) } - println(this.examples) } fun build() = ResponseInfo(