From fbad40cc91d2f47bb6a00559d3e528a516ac1b40 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Sun, 17 Jan 2016 15:49:45 -0500 Subject: [PATCH] Fix mind-numbingly stupid stack overflow bug --- .../Collections/Generic/AutoDictionary.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CSharp/Libraries/UniversalEditor.Essential/Collections/Generic/AutoDictionary.cs b/CSharp/Libraries/UniversalEditor.Essential/Collections/Generic/AutoDictionary.cs index 5bef6898..9aa625e5 100644 --- a/CSharp/Libraries/UniversalEditor.Essential/Collections/Generic/AutoDictionary.cs +++ b/CSharp/Libraries/UniversalEditor.Essential/Collections/Generic/AutoDictionary.cs @@ -42,7 +42,7 @@ namespace UniversalEditor.Collections.Generic { // the .NET Framework Dictionary`2 implementation handles the "add or update" case // automatically if a non-existent key is specified - this[key] = value; + base[key] = value; } } }