summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Collections
diff options
context:
space:
mode:
authorWraith2 <Wraith2@users.noreply.github.com>2018-07-14 20:13:38 +0100
committerStephen Toub <stoub@microsoft.com>2018-07-14 15:13:38 -0400
commita6b9bbbf284496f87c02555aca29ff8f2b762805 (patch)
treeec9b1e4e761427259a27052bf0f2d8d94ada0dda /src/System.Private.CoreLib/shared/System/Collections
parent78fc03b0755ac3c428d5f6c8f30b50af65d0e0a8 (diff)
downloadcoreclr-a6b9bbbf284496f87c02555aca29ff8f2b762805.tar.gz
coreclr-a6b9bbbf284496f87c02555aca29ff8f2b762805.tar.bz2
coreclr-a6b9bbbf284496f87c02555aca29ff8f2b762805.zip
Remove version increment from Dictionary<K,V>.Remove overloads (#18854)
* remove version increment from Remove overloads * add temporary test exclusions * fixup test exclusion names * modify test exclusions
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Collections')
-rw-r--r--src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs b/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs
index ece6f44f33..8f7ad70e29 100644
--- a/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs
+++ b/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs
@@ -796,7 +796,6 @@ namespace System.Collections.Generic
}
_freeList = i;
_freeCount++;
- _version++;
return true;
}
@@ -865,7 +864,6 @@ namespace System.Collections.Generic
}
_freeList = i;
_freeCount++;
- _version++;
return true;
}