From bc393c234f40c5dd6f085c29856ef757cbb20122 Mon Sep 17 00:00:00 2001 From: PaulV Date: Sun, 9 Jan 2022 18:54:41 +0100 Subject: [PATCH] remove unnecessary print --- .../api_editor/transformation/GroupAnnotationProcessor.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/server/src/main/kotlin/com/larsreimann/api_editor/transformation/GroupAnnotationProcessor.kt b/server/src/main/kotlin/com/larsreimann/api_editor/transformation/GroupAnnotationProcessor.kt index 6da51b5ad..1bb60b95c 100644 --- a/server/src/main/kotlin/com/larsreimann/api_editor/transformation/GroupAnnotationProcessor.kt +++ b/server/src/main/kotlin/com/larsreimann/api_editor/transformation/GroupAnnotationProcessor.kt @@ -32,7 +32,6 @@ private fun MutablePythonFunction.processGroupAnnotations(module: MutablePythonM .filterIsInstance() .forEach { annotation -> val firstOccurrence = this.parameters.indexOfFirst { it.name in annotation.parameters } - println(parameters.toList().toString()) val groupedParameter = MutablePythonParameter( name = annotation.groupName.replaceFirstChar { it.lowercase() }, typeInDocs = annotation.groupName.replaceFirstChar { it.uppercase() },