File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
StackExchange.Redis/StackExchange/Redis Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -110,19 +110,15 @@ internal partial class ServerEndPoint
110
110
{
111
111
internal void SimulateConnectionFailure ( )
112
112
{
113
- var tmp = interactive ;
114
- tmp ? . SimulateConnectionFailure ( ) ;
115
- tmp = subscription ;
116
- tmp ? . SimulateConnectionFailure ( ) ;
113
+ interactive ? . SimulateConnectionFailure ( ) ;
114
+ subscription ? . SimulateConnectionFailure ( ) ;
117
115
}
118
116
119
117
internal string ListPending ( int maxCount )
120
118
{
121
119
var sb = new StringBuilder ( ) ;
122
- var tmp = interactive ;
123
- tmp ? . ListPending ( sb , maxCount ) ;
124
- tmp = subscription ;
125
- tmp ? . ListPending ( sb , maxCount ) ;
120
+ interactive ? . ListPending ( sb , maxCount ) ;
121
+ subscription ? . ListPending ( sb , maxCount ) ;
126
122
return sb . ToString ( ) ;
127
123
}
128
124
}
You can’t perform that action at this time.
0 commit comments