KeyFoundEventArgs constructor fix

KeyFoundEventArgs constructor didn't set value leading to always
substituting with an empty string
This commit is contained in:
Zbynek Zavadil 2014-07-14 21:14:55 +02:00
parent 8135db68df
commit 758f112836
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ namespace Mustache
internal KeyFoundEventArgs(string key, object value) internal KeyFoundEventArgs(string key, object value)
{ {
Key = key; Key = key;
Substitute = value;
} }
/// <summary> /// <summary>