Skip to content

Commit

Permalink
Reacting to Configuration VNext Repo changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jetski5822 committed Feb 26, 2015
1 parent c63b6d0 commit 7c6ab1a
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace OrchardVNext.Environment.Configuration.Sources
{
public class DefaultFileConfigurationSource : BaseConfigurationSource, ICommitableConfigurationSource {
public class DefaultFileConfigurationSource : ConfigurationSource {
private readonly IAppDataFolder _appDataFolder;

public const char Separator = ':';
Expand All @@ -30,10 +30,6 @@ public override void Load() {
}
}

public void Commit() {
throw new NotImplementedException();
}

internal void Load(Stream stream) {
var data = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);

Expand Down Expand Up @@ -66,7 +62,7 @@ internal void Load(Stream stream) {
}
}

ReplaceData(data);
Data = data;
}
}
}

0 comments on commit 7c6ab1a

Please sign in to comment.