From b871e4a092aed9d0a09fe346293219489ab2c334 Mon Sep 17 00:00:00 2001 From: Manish Jayaswal Date: Sun, 4 Oct 2015 12:59:34 -0700 Subject: [PATCH] Formatting change --- .../Editor/InteractiveWindow.UIThreadOnly.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/InteractiveWindow/Editor/InteractiveWindow.UIThreadOnly.cs b/src/InteractiveWindow/Editor/InteractiveWindow.UIThreadOnly.cs index d963329bfcb..3e0927be01f 100644 --- a/src/InteractiveWindow/Editor/InteractiveWindow.UIThreadOnly.cs +++ b/src/InteractiveWindow/Editor/InteractiveWindow.UIThreadOnly.cs @@ -829,7 +829,9 @@ private async Task SubmitAsync() // If reset button is clicked during a long running submission -> it could be Resetting becasue // oldService is disposed first as part of resetting, which leads to await call above returning, and new service is // created after that as part of completing the resetting process. - Debug.Assert(State == State.ExecutingInput || State == State.WaitingForInput || State == State.Resetting, $"Unexpected state {State}"); + Debug.Assert(State == State.ExecutingInput || + State == State.WaitingForInput || + State == State.Resetting, $"Unexpected state {State}"); if (State == State.ExecutingInput) { -- GitLab