diff options
| author | Claus Vium <clausvium@gmail.com> | 2019-01-20 06:33:33 +0100 |
|---|---|---|
| committer | Claus Vium <clausvium@gmail.com> | 2019-01-20 06:33:33 +0100 |
| commit | 217d35ee74d77c50db5db602a0d9164cab493fc0 (patch) | |
| tree | a6ee9a09295e400374a6cafcef7b873d9ede682f | |
| parent | 790266d3146284f3828abc0d78d7af15da8b9168 (diff) | |
Fix missing imports after rebase
| -rw-r--r-- | BDInfo/TSPlaylistFile.cs | 3 | ||||
| -rw-r--r-- | OpenSubtitlesHandler/Utilities.cs | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/BDInfo/TSPlaylistFile.cs b/BDInfo/TSPlaylistFile.cs index e8774af9d..8c98d44d7 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 // @@ -21,6 +21,7 @@ using System; using System.Collections.Generic; using System.IO; +using System.Text; using MediaBrowser.Model.IO; namespace BDInfo diff --git a/OpenSubtitlesHandler/Utilities.cs b/OpenSubtitlesHandler/Utilities.cs index 75b751032..429e28a8f 100644 --- a/OpenSubtitlesHandler/Utilities.cs +++ b/OpenSubtitlesHandler/Utilities.cs @@ -1,4 +1,4 @@ -/* This file is part of OpenSubtitles Handler +/* This file is part of OpenSubtitles Handler A library that handle OpenSubtitles.org XML-RPC methods. Copyright © Ala Ibrahim Hadid 2013 @@ -19,6 +19,7 @@ using System; using System.Collections.Generic; using System.IO; +using System.Text; using System.Threading; using System.Threading.Tasks; using MediaBrowser.Common.Net; |
