Remove assert which was incorrectly added to TcpPort::OnSentPacket.

TBR=pthatcher@webrtc.org

BUG=webrtc:4173

Review URL: https://codereview.webrtc.org/1588083002 .

Cr-Commit-Position: refs/heads/master@{#11252}
This commit is contained in:
Stefan Holmer
2016-01-14 17:03:53 +01:00
parent 55674ffb32
commit 2734d77c95

View File

@ -289,7 +289,6 @@ void TCPPort::OnReadPacket(rtc::AsyncPacketSocket* socket,
void TCPPort::OnSentPacket(rtc::AsyncPacketSocket* socket,
const rtc::SentPacket& sent_packet) {
ASSERT(socket == socket_);
PortInterface::SignalSentPacket(sent_packet);
}