From b90457e170ecc4353d990ac3bb4d1113df36ed50 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Laval?= Date: Mon, 21 Mar 2011 12:42:43 +0100 Subject: [PATCH] Tiny style fix --- mcs/class/corlib/System.Threading.Tasks/Task.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcs/class/corlib/System.Threading.Tasks/Task.cs b/mcs/class/corlib/System.Threading.Tasks/Task.cs index 285a4890de2..38de68c1521 100644 --- a/mcs/class/corlib/System.Threading.Tasks/Task.cs +++ b/mcs/class/corlib/System.Threading.Tasks/Task.cs @@ -455,7 +455,7 @@ namespace System.Threading.Tasks TaskScheduler.Current = null; // Tell parent that we are finished - if (CheckTaskOptions (taskCreationOptions, TaskCreationOptions.AttachedToParent) && parent != null){ + if (CheckTaskOptions (taskCreationOptions, TaskCreationOptions.AttachedToParent) && parent != null) { parent.ChildCompleted (); } } -- 2.11.4.GIT