diff options
author | Alan Conway <aconway@apache.org> | 2009-02-10 22:16:05 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-02-10 22:16:05 +0000 |
commit | e520915a8161af6fb39ff3fc68924f0e4b87da85 (patch) | |
tree | f89de3b76b7a9ef172f57c24bc04371e6855fa02 /cpp/src/qpid/cluster/Decoder.cpp | |
parent | f6f6916d3a631240f08f9d9fedf5c3b5f71883aa (diff) | |
download | qpid-python-e520915a8161af6fb39ff3fc68924f0e4b87da85.tar.gz |
Remove unused class and clean up some FIXME comments.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@743131 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Decoder.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Decoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Decoder.cpp b/cpp/src/qpid/cluster/Decoder.cpp index 54d0224db1..4645a489c8 100644 --- a/cpp/src/qpid/cluster/Decoder.cpp +++ b/cpp/src/qpid/cluster/Decoder.cpp @@ -39,7 +39,7 @@ void Decoder::decode(const EventHeader& eh, const void* data) { void Decoder::erase(const ConnectionId& c) { Map::iterator i = map.find(c); - if (i != map.end()) // FIXME aconway 2009-02-03: + if (i != map.end()) map.erase(i); } |