File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/com/rabbitmq/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 @@ -145,13 +145,13 @@ public synchronized void disconnectChannel(ChannelN channel) {
145145 // a way as to cause disconnectChannel on the old channel to try to
146146 // remove the new one. Ideally we would fix this race at the source,
147147 // but it's much easier to just catch it here.
148- synchronized (_channelMap ){
148+ synchronized (_channelMap ) {
149149 ChannelN existing = _channelMap .remove (channelNumber );
150150 // Nothing to do here. Move along.
151- if (existing == null ) return ;
151+ if (existing == null ) return ;
152152 // Oops, we've gone and stomped on someone else's channel. Put it back
153153 // and pretend we didn't touch it.
154- else if (existing != channel ){
154+ else if (existing != channel ) {
155155 _channelMap .put (channelNumber , existing );
156156 return ;
157157 }
You can’t perform that action at this time.
0 commit comments