Skip to content

Commit 0e2183e

Browse files
author
Pim De Witte
committed
Quick styling fix
1 parent bf218b9 commit 0e2183e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

UnityMainThreadDispatcher.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ public class UnityMainThreadDispatcher : MonoBehaviour {
2828
private readonly static Queue<Action> _executionQueue = new Queue<Action>();
2929

3030
public void Update() {
31-
while (_executionQueue.Count > 0)
32-
{
31+
while (_executionQueue.Count > 0) {
3332
_executionQueue.Dequeue().Invoke();
3433
}
3534
}

0 commit comments

Comments
 (0)