mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-03 14:28:46 +01:00
Remove the unused arg
This commit is contained in:
@@ -11,10 +11,9 @@ namespace MediaBrowser.Controller.Library
|
||||
public interface IDirectStreamProvider
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the live stream, optionally seeks to the end of the file first.
|
||||
/// Gets the live stream, shared streams seek to the end of the file first.
|
||||
/// </summary>
|
||||
/// <param name="seekNearEnd">A value indicating whether to seek to the end of the file.</param>
|
||||
/// <returns>The stream.</returns>
|
||||
Stream GetStream(bool seekNearEnd = true);
|
||||
Stream GetStream();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,6 +27,6 @@ namespace MediaBrowser.Controller.Library
|
||||
|
||||
Task Close();
|
||||
|
||||
Stream GetStream(bool seekNearEnd = true);
|
||||
Stream GetStream();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user