chore: Update SafeMutex.cs to remove commented out boilerplate

IDisposable boilerplate generates commented out finalizer. Removing commented out finalizer at request of upstream maintainer.
This commit is contained in:
Scott Pidzarko 2023-06-16 16:36:41 -06:00 committed by GitHub
parent f150079090
commit 4d84ded416
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -113,14 +113,6 @@ namespace ICD.Common.Utils
_disposedValue = true;
}
}
// override finalizer only if 'Dispose(bool disposing)' has code to free unmanaged resources
// ~SafeMutex()
// {
// // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method
// Dispose(disposing: false);
// }
/// <inheritdoc/>
public void Dispose()