mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 12:58:28 +01:00
Enable nullable reference types for MediaBrowser.MediaEncoding.Subtitles
This commit is contained in:
@@ -9,9 +9,9 @@ namespace MediaBrowser.MediaEncoding.BdInfo
|
||||
{
|
||||
public class BdInfoDirectoryInfo : IDirectoryInfo
|
||||
{
|
||||
private readonly IFileSystem _fileSystem = null;
|
||||
private readonly IFileSystem _fileSystem;
|
||||
|
||||
private readonly FileSystemMetadata _impl = null;
|
||||
private readonly FileSystemMetadata _impl;
|
||||
|
||||
public BdInfoDirectoryInfo(IFileSystem fileSystem, string path)
|
||||
{
|
||||
@@ -29,7 +29,7 @@ namespace MediaBrowser.MediaEncoding.BdInfo
|
||||
|
||||
public string FullName => _impl.FullName;
|
||||
|
||||
public IDirectoryInfo Parent
|
||||
public IDirectoryInfo? Parent
|
||||
{
|
||||
get
|
||||
{
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace MediaBrowser.MediaEncoding.BdInfo
|
||||
{
|
||||
public class BdInfoFileInfo : BDInfo.IO.IFileInfo
|
||||
{
|
||||
private FileSystemMetadata _impl = null;
|
||||
private FileSystemMetadata _impl;
|
||||
|
||||
public BdInfoFileInfo(FileSystemMetadata impl)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user