diff --git a/src/base/bittorrent/peerinfo.cpp b/src/base/bittorrent/peerinfo.cpp index 29c7686e7..d054e38d7 100644 --- a/src/base/bittorrent/peerinfo.cpp +++ b/src/base/bittorrent/peerinfo.cpp @@ -121,12 +121,6 @@ bool PeerInfo::isConnecting() const return (m_nativeInfo.flags & libt::peer_info::connecting); } -bool PeerInfo::isQueued() const -{ - return (m_nativeInfo.flags & libt::peer_info::queued); -} - - bool PeerInfo::isOnParole() const { return (m_nativeInfo.flags & libt::peer_info::on_parole); diff --git a/src/base/bittorrent/peerinfo.h b/src/base/bittorrent/peerinfo.h index 0c7a06570..0d096c493 100644 --- a/src/base/bittorrent/peerinfo.h +++ b/src/base/bittorrent/peerinfo.h @@ -68,7 +68,6 @@ namespace BitTorrent bool isHandshake() const; bool isConnecting() const; - bool isQueued() const; bool isOnParole() const; bool isSeed() const;