We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f9b899 commit 0f56c9fCopy full SHA for 0f56c9f
Editor/Parsing/BackgroundParser.cs
@@ -43,7 +43,7 @@ Operation CreateOperation (TInput input)
43
Operation op = (Operation)state!;
44
try {
45
// op.Output accesses the task.Result, throwing any exceptions
46
- op.Processor.OnOperationCompleted (op.Input, op.Output);
+ op.Processor.OnOperationCompleted (op.Input, op.Output!); // output only returns null if task is not completed
47
op.Processor.lastSuccessfulOperation = op;
48
} catch (Exception eventException) {
49
op.Processor.OnUnhandledParseError (eventException);
0 commit comments