summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/io/APRSocket.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-10-19 00:42:50 +0000
committerAlan Conway <aconway@apache.org>2006-10-19 00:42:50 +0000
commit025451b1e26c48ca58c388921827929d11c9459c (patch)
treec17089878b1a40d6b310e8bc964e9130d4fdc8cc /cpp/src/qpid/io/APRSocket.cpp
parent0bb663e29bc993e94171be1427c5686702bde091 (diff)
downloadqpid-python-025451b1e26c48ca58c388921827929d11c9459c.tar.gz
Fixed various minor TODO issues.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@465432 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/io/APRSocket.cpp')
-rw-r--r--cpp/src/qpid/io/APRSocket.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpp/src/qpid/io/APRSocket.cpp b/cpp/src/qpid/io/APRSocket.cpp
index 80fb642c8e..824c376c3b 100644
--- a/cpp/src/qpid/io/APRSocket.cpp
+++ b/cpp/src/qpid/io/APRSocket.cpp
@@ -45,7 +45,6 @@ void APRSocket::write(qpid::framing::Buffer& buffer){
do{
bytes = buffer.available();
apr_socket_send(socket, buffer.start(), &bytes);
- // TODO aconway 2006-10-05: why don't we check status here?
buffer.move(bytes);
}while(bytes > 0);
}