From e86fe504c853abe075cc3cfe83e1d4e772a5e648 Mon Sep 17 00:00:00 2001 From: Emily Dobervich Date: Tue, 14 Nov 2023 11:26:30 -0600 Subject: [PATCH] fix linting --- .../com/netflix/graphql/dgs/internal/EntityFetcherRegistry.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]!! }