Skip to content

Commit 41dc650

Browse files
committed
CA1816 Change Dispose() to call GC.SuppressFinalize(object). This will prevent derived types that introduce a finalizer from needing to re-implement 'IDisposable' to call it.
1 parent fd30f04 commit 41dc650

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/Ocelot.AcceptanceTests/CustomMiddlewareTests.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,9 @@ private void GivenThereIsAServiceRunningOn(string url, int statusCode, string ba
496496

497497
public void Dispose()
498498
{
499-
_serviceHandler?.Dispose();
500-
_steps.Dispose();
499+
_serviceHandler.Dispose();
500+
_steps.Dispose();
501+
GC.SuppressFinalize(this);
501502
}
502503

503504
public class FakeMiddleware

0 commit comments

Comments
 (0)