Skip to content

Commit 1169175

Browse files
feat: mark execution result and Throwable as nullable (ExpediaGroup#1521)
1 parent 4293777 commit 1169175

File tree

1 file changed

+1
-1
lines changed
  • executions/graphql-kotlin-dataloader-instrumentation/src/main/kotlin/com/expediagroup/graphql/dataloader/instrumentation/level/state

1 file changed

+1
-1
lines changed

executions/graphql-kotlin-dataloader-instrumentation/src/main/kotlin/com/expediagroup/graphql/dataloader/instrumentation/level/state/ExecutionLevelDispatchedState.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class ExecutionLevelDispatchedState(
8080
override fun onDispatched(result: CompletableFuture<ExecutionResult>) {
8181
}
8282

83-
override fun onCompleted(result: ExecutionResult, t: Throwable) {
83+
override fun onCompleted(result: ExecutionResult?, t: Throwable?) {
8484
}
8585

8686
override fun onFieldValuesInfo(fieldValueInfoList: List<FieldValueInfo>) {

0 commit comments

Comments
 (0)