Skip to content

Commit

Permalink
One more comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bentoi committed Apr 17, 2024
1 parent 626d4c0 commit 75bdecb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
4 changes: 1 addition & 3 deletions cpp/src/Ice/ConnectionI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1569,9 +1569,7 @@ Ice::ConnectionI::message(ThreadPoolCurrent& current)
// it from the thread pool's selector.
_threadPool->unregister(shared_from_this(), current.operation);

//
// We start out in holding state.
//
// The connection starts in the holding state. It will be activated by the connection factory.
setState(StateHolding);
if (_connectionStartCompleted)
{
Expand Down
4 changes: 1 addition & 3 deletions csharp/src/Ice/ConnectionI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ public void start(StartCallback callback)
return;
}

//
// We start out in holding state.
//
// The connection starts in the holding state. It will be activated by the connection factory.
setState(StateHolding);
}
}
Expand Down
5 changes: 2 additions & 3 deletions java/src/Ice/src/main/java/com/zeroc/Ice/ConnectionI.java
Original file line number Diff line number Diff line change
Expand Up @@ -946,9 +946,8 @@ public void message(com.zeroc.IceInternal.ThreadPoolCurrent current) {
// written. So unregister it from the thread pool's selector.
_threadPool.unregister(this, current.operation);

//
// We start out in holding state.
//
// The connection starts in the holding state. It will be activated by the
// connection factory.
setState(StateHolding);
if (_startCallback != null) {
startCB = _startCallback;
Expand Down

0 comments on commit 75bdecb

Please sign in to comment.