diff --git a/graphql-dgs/src/main/kotlin/com/netflix/graphql/dgs/internal/EntityFetcherRegistry.kt b/graphql-dgs/src/main/kotlin/com/netflix/graphql/dgs/internal/EntityFetcherRegistry.kt index 9b27bad00d..ca7ef17da3 100644 --- a/graphql-dgs/src/main/kotlin/com/netflix/graphql/dgs/internal/EntityFetcherRegistry.kt +++ b/graphql-dgs/src/main/kotlin/com/netflix/graphql/dgs/internal/EntityFetcherRegistry.kt @@ -24,7 +24,7 @@ class EntityFetcherRegistry { val coercionEnabled = mutableMapOf() val entityFetcherInputMappings = mutableMapOf, Coercing<*, *>>>() - fun isCoercionEnabled(typename: String) : Boolean { + fun isCoercionEnabled(typename: String): Boolean { if (coercionEnabled.containsKey(typename)) { return coercionEnabled[typename]!! }