Skip to content

Commit da219fe

Browse files
committed
Remove unused finally block
Follow-up to #727
1 parent dd1564d commit da219fe

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

projects/client/RabbitMQ.Client/src/client/impl/ModelBase.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -556,13 +556,7 @@ protected virtual void Dispose(bool disposing)
556556
if (disposing)
557557
{
558558
// dispose managed resources
559-
try
560-
{
561-
Abort();
562-
}
563-
finally
564-
{
565-
}
559+
Abort();
566560
}
567561

568562
// dispose unmanaged resources

0 commit comments

Comments
 (0)