Merge pull request #513 from pruiz/xamarin-bug-8565-v2
[mono.git] / mcs / class / corlib / System.Threading.Tasks / TaskCompletionQueue.cs
index d1582babdd98f576a9a5507e85dbd626421a9487..ed9e5943364f8ca6c80be0a48f0abd25d9b7b23a 100644 (file)
@@ -61,7 +61,6 @@ namespace System.Threading.Tasks
 
                public bool HasElements {
                        get {
-                               Thread.MemoryBarrier ();
                                return single != null || (completed != null && completed.Count != 0);
                        }
                }