From 3f1809e5cc282ed1d4a13d6a62a210cdea739a31 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Mon, 28 Jul 2014 22:14:30 +0000 Subject: [PATCH] Fixed a bug in the ValueCollection: SyncRoot was returning the IsSynchronized property of the internal collection git-svn-id: file:///srv/devel/repo-conversion/nusu@327 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/Collections/MultiDictionary.ValueCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Collections/MultiDictionary.ValueCollection.cs b/Source/Collections/MultiDictionary.ValueCollection.cs index c729389..cd42bdc 100644 --- a/Source/Collections/MultiDictionary.ValueCollection.cs +++ b/Source/Collections/MultiDictionary.ValueCollection.cs @@ -252,7 +252,7 @@ namespace Nuclex.Support.Collections { /// The synchronization root used by the dictionary for thread synchronization /// object ICollection.SyncRoot { - get { return this.dictionaryAsICollection.IsSynchronized; } + get { return this.dictionaryAsICollection.SyncRoot; } } #endregion // ICollection implementation