Skip to content

Commit

Permalink
feat: mark execution result and Throwable as nullable (#1521)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelAndalon authored Aug 18, 2022
1 parent 4293777 commit 1169175
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class ExecutionLevelDispatchedState(
override fun onDispatched(result: CompletableFuture<ExecutionResult>) {
}

override fun onCompleted(result: ExecutionResult, t: Throwable) {
override fun onCompleted(result: ExecutionResult?, t: Throwable?) {
}

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

0 comments on commit 1169175

Please sign in to comment.