diff --git a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs b/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
index 56ccb21ee7..2af2677855 100644
--- a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
+++ b/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
@@ -68,7 +68,7 @@ namespace Emby.Server.Implementations.EntryPoints
///
public Task RunAsync()
{
- CheckDisposed();
+ ObjectDisposedException.ThrowIf(_disposed, this);
if (!_configurationManager.GetNetworkConfiguration().AutoDiscovery)
{
@@ -123,14 +123,6 @@ namespace Emby.Server.Implementations.EntryPoints
return Task.CompletedTask;
}
- private void CheckDisposed()
- {
- if (_disposed)
- {
- throw new ObjectDisposedException(GetType().Name);
- }
- }
-
///
public void Dispose()
{