Skip to content

Commit

Permalink
add jvmoverloads constructor for NadelServiceExecutionResultImpl (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbarker2 authored Mar 13, 2024
1 parent bfb4786 commit 968dd20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/main/java/graphql/nadel/ServiceExecutionResult.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class NadelIncrementalServiceExecutionResult(
val hasNext: Boolean,
) : ServiceExecutionResult(serviceExecutionResult.data, serviceExecutionResult.errors, serviceExecutionResult.extensions)

class NadelServiceExecutionResultImpl(
class NadelServiceExecutionResultImpl @JvmOverloads constructor(
data: MutableMap<String, Any?> = LinkedHashMap(),
errors: MutableList<MutableMap<String, Any?>> = ArrayList(),
extensions: MutableMap<String, Any?> = LinkedHashMap(),
Expand Down

0 comments on commit 968dd20

Please sign in to comment.