Skip to content
Merged
Prev Previous commit
Next Next commit
Fix FakeConfigurationProvider
  • Loading branch information
maxkoshevoi committed Aug 14, 2021
commit e02fcb560c95ddddaeb822e50c55e83f5b744332
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal class FakeConfigurationProvider : MemoryConfigurationProvider, IConfigu
public FakeConfigurationProvider(MemoryConfigurationSource source)
: base(source) { }

public new void Set(string key, string value)
public new void Set(string key, string? value)
{
base.Set(key, value);
OnReload();
Expand Down