Remove redundant SuppressFinalize call

This commit is contained in:
Stepan Goremykin 2023-10-07 23:41:45 +02:00
parent 1141883f77
commit a3d3ec7e0b
3 changed files with 0 additions and 5 deletions

View File

@ -210,7 +210,6 @@ namespace Emby.Server.Implementations.IO
DisposeTimer();
_disposed = true;
GC.SuppressFinalize(this);
}
}
}

View File

@ -44,8 +44,6 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
StopStreaming(socket).GetAwaiter().GetResult();
}
}
GC.SuppressFinalize(this);
}
public async Task<bool> CheckTunerAvailability(IPAddress remoteIP, int tuner, CancellationToken cancellationToken)

View File

@ -126,8 +126,6 @@ namespace Emby.Server.Implementations.Udp
}
_udpSocket?.Dispose();
GC.SuppressFinalize(this);
}
}
}