Fix mind-numbingly stupid stack overflow bug

This commit is contained in:
Michael Becker 2016-01-17 15:49:45 -05:00
parent 40b68faf14
commit fbad40cc91

View File

@ -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;
}
}
}