File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
projects/client/RabbitMQ.Client/src/client/impl Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1025,7 +1025,7 @@ public void HeartbeatReadTimerCallback(object state)
1025
1025
_heartbeatReadTimer . Change ( Heartbeat * 1000 , Timeout . Infinite ) ;
1026
1026
}
1027
1027
}
1028
- catch ( ObjectDisposedException ignored )
1028
+ catch ( ObjectDisposedException )
1029
1029
{
1030
1030
1031
1031
// timer is already disposed,
@@ -1062,7 +1062,7 @@ public void HeartbeatWriteTimerCallback(object state)
1062
1062
FinishClose ( ) ;
1063
1063
}
1064
1064
}
1065
- catch ( ObjectDisposedException ignored )
1065
+ catch ( ObjectDisposedException )
1066
1066
{
1067
1067
// timer is already disposed,
1068
1068
// e.g. due to shutdown
@@ -1084,7 +1084,7 @@ private void MaybeDisposeTimer(ref Timer timer)
1084
1084
timer . Change ( Timeout . Infinite , Timeout . Infinite ) ;
1085
1085
timer . Dispose ( ) ;
1086
1086
}
1087
- catch ( ObjectDisposedException ignored )
1087
+ catch ( ObjectDisposedException )
1088
1088
{
1089
1089
timer = null ;
1090
1090
}
You can’t perform that action at this time.
0 commit comments