diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-26 22:31:59 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-28 22:09:58 +0100 |
| commit | a430568082b55f2f989924c59e0729808b39226c (patch) | |
| tree | 6716feb968102b831d4bf8924359b2f68a2c53cb /BDInfo/TSPlaylistFile.cs | |
| parent | d7c6d1625043fb69a90e7ccb24fc31a912c8a2d3 (diff) | |
Unwrapped `OpenRead` and `CopyFile`
Diffstat (limited to 'BDInfo/TSPlaylistFile.cs')
| -rw-r--r-- | BDInfo/TSPlaylistFile.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BDInfo/TSPlaylistFile.cs b/BDInfo/TSPlaylistFile.cs index 8c98d44d7..6e91f6e40 100644 --- a/BDInfo/TSPlaylistFile.cs +++ b/BDInfo/TSPlaylistFile.cs @@ -1,4 +1,4 @@ -//============================================================================ +//============================================================================ // BDInfo - Blu-ray Video and Audio Analysis Tool // Copyright © 2010 Cinema Squid // @@ -231,7 +231,7 @@ namespace BDInfo Streams.Clear(); StreamClips.Clear(); - fileStream = _fileSystem.OpenRead(FileInfo.FullName); + fileStream = File.OpenRead(FileInfo.FullName); fileReader = new BinaryReader(fileStream); byte[] data = new byte[fileStream.Length]; |
