mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Use ObjectDisposedException throw helper in UdpServerEntryPoint
This commit is contained in:
parent
9597648ce3
commit
57a2267304
@ -68,7 +68,7 @@ namespace Emby.Server.Implementations.EntryPoints
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public Task RunAsync()
|
public Task RunAsync()
|
||||||
{
|
{
|
||||||
CheckDisposed();
|
ObjectDisposedException.ThrowIf(_disposed, this);
|
||||||
|
|
||||||
if (!_configurationManager.GetNetworkConfiguration().AutoDiscovery)
|
if (!_configurationManager.GetNetworkConfiguration().AutoDiscovery)
|
||||||
{
|
{
|
||||||
@ -123,14 +123,6 @@ namespace Emby.Server.Implementations.EntryPoints
|
|||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void CheckDisposed()
|
|
||||||
{
|
|
||||||
if (_disposed)
|
|
||||||
{
|
|
||||||
throw new ObjectDisposedException(GetType().Name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user