Mark where ILogger is being set to null

This commit is contained in:
Bond_009
2018-12-13 18:40:51 +01:00
parent 0f8b3c6347
commit 3d3ec3588b
7 changed files with 10 additions and 9 deletions

View File

@@ -27,7 +27,7 @@ namespace MediaBrowser.Controller.Providers
}
public DirectoryService(IFileSystem fileSystem)
: this(null, fileSystem) // TODO change
: this(null, fileSystem) // TODO: @bond NullLogger
{
}

View File

@@ -25,7 +25,7 @@ namespace MediaBrowser.Controller.Providers
public bool EnableRemoteContentProbe { get; set; }
public MetadataRefreshOptions(IFileSystem fileSystem)
: this(new DirectoryService(null, fileSystem)) // TODO
: this(new DirectoryService(null, fileSystem)) // TODO: @bond NullLogger
{
}