From 22221a01870cb0de990c3b6dd4f789a13597bee2 Mon Sep 17 00:00:00 2001 From: skyoxZ Date: Tue, 23 Jan 2024 20:39:31 +0800 Subject: [PATCH] Remove commented TaskStatus.Blocked (#97369) --- .../System.Private.CoreLib/src/System/Threading/Tasks/Task.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/Task.cs b/src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/Task.cs index e1d129075a19d..09eb579f4edd3 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/Task.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/Task.cs @@ -41,10 +41,6 @@ public enum TaskStatus /// The task is running but has not yet completed. /// Running, - // /// - // /// The task is currently blocked in a wait state. - // /// - // Blocked, /// /// The task has finished executing and is implicitly waiting for /// attached child tasks to complete.