This commit is contained in:
Wei Wang 2014-04-08 16:35:14 -07:00
Родитель a9555679b9
Коммит 340271681d
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -11,7 +11,7 @@ namespace Microsoft.AspNet.Configuration.Json
{
public JsonConfigurationSource(string path)
{
if (string.IsNullOrEmpty(path) || string.IsNullOrWhiteSpace(path))
if (string.IsNullOrEmpty(path))
{
// TODO: exception message localization
throw new ArgumentException("File path must be a non-empty string", "path");

Просмотреть файл

@ -19,7 +19,7 @@ namespace Microsoft.AspNet.ConfigurationModel.Sources
/// <param name="path">The path and file name to load.</param>
public IniFileConfigurationSource(string path)
{
if (string.IsNullOrEmpty(path) || string.IsNullOrWhiteSpace(path))
if (string.IsNullOrEmpty(path))
{
// TODO: exception message localization
throw new ArgumentException("File path must be a non-empty string", "path");