Skip to content

Commit 7f45c86

Browse files
committed
fix(spring-boot): remove unnecessary println
1 parent 025cb3a commit 7f45c86

File tree

1 file changed

+0
-2
lines changed
  • graphql-kotlin-toolkit-spring-boot/src/main/kotlin/com/auritylab/graphql/kotlin/toolkit/spring/schema

1 file changed

+0
-2
lines changed

graphql-kotlin-toolkit-spring-boot/src/main/kotlin/com/auritylab/graphql/kotlin/toolkit/spring/schema/BaseSchemaAugmentation.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class BaseSchemaAugmentation {
1111
var cSchema = schema
1212
var cBuilder = GraphQLSchema.newSchema(cSchema)
1313

14-
println("Previous: " + cSchema.additionalTypes.size)
1514
delegates.forEach {
1615
it.augmentSchema(cSchema, cBuilder)
1716

@@ -20,7 +19,6 @@ class BaseSchemaAugmentation {
2019
}
2120

2221
cSchema = cBuilder.build()
23-
println("After: " + cSchema.additionalTypes.size)
2422

2523
return cSchema
2624
}

0 commit comments

Comments
 (0)