Skip to content

Commit 0f56c9f

Browse files
committedSep 3, 2024
Fix nullability warning in BackgroundProcessor
1 parent 0f9b899 commit 0f56c9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Editor/Parsing/BackgroundParser.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Operation CreateOperation (TInput input)
4343
Operation op = (Operation)state!;
4444
try {
4545
// op.Output accesses the task.Result, throwing any exceptions
46-
op.Processor.OnOperationCompleted (op.Input, op.Output);
46+
op.Processor.OnOperationCompleted (op.Input, op.Output!); // output only returns null if task is not completed
4747
op.Processor.lastSuccessfulOperation = op;
4848
} catch (Exception eventException) {
4949
op.Processor.OnUnhandledParseError (eventException);

0 commit comments

Comments
 (0)