mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-18 20:24:20 +01:00
Remove the need for NullLogger
This commit is contained in:
@@ -26,11 +26,6 @@ namespace MediaBrowser.Controller.Providers
|
||||
_fileSystem = fileSystem;
|
||||
}
|
||||
|
||||
public DirectoryService(IFileSystem fileSystem)
|
||||
: this(null, fileSystem) // TODO: @bond NullLogger
|
||||
{
|
||||
}
|
||||
|
||||
public FileSystemMetadata[] GetFileSystemEntries(string path)
|
||||
{
|
||||
FileSystemMetadata[] entries;
|
||||
|
||||
@@ -24,11 +24,6 @@ namespace MediaBrowser.Controller.Providers
|
||||
public bool ForceSave { get; set; }
|
||||
public bool EnableRemoteContentProbe { get; set; }
|
||||
|
||||
public MetadataRefreshOptions(IFileSystem fileSystem)
|
||||
: this(new DirectoryService(null, fileSystem)) // TODO: @bond NullLogger
|
||||
{
|
||||
}
|
||||
|
||||
public MetadataRefreshOptions(IDirectoryService directoryService)
|
||||
: base(directoryService)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user