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 Drew Tingen
parent 2988912d44
commit e84bc721ee

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()