mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Remove a bunch of deadcode
This commit is contained in:
parent
0573ad2678
commit
162028abd0
@ -196,7 +196,6 @@ bool RsGxsGrpMetaData::deserialise(void *data, uint32_t &pktsize)
|
|||||||
|
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
int RsGxsMsgMetaData::refcount = 0;
|
|
||||||
|
|
||||||
RsGxsMsgMetaData::RsGxsMsgMetaData(){
|
RsGxsMsgMetaData::RsGxsMsgMetaData(){
|
||||||
clear();
|
clear();
|
||||||
|
@ -99,8 +99,6 @@ public:
|
|||||||
void clear();
|
void clear();
|
||||||
void operator =(const RsMsgMetaData& rMeta);
|
void operator =(const RsMsgMetaData& rMeta);
|
||||||
|
|
||||||
static int refcount;
|
|
||||||
|
|
||||||
//Sort data in same order than serialiser and deserializer
|
//Sort data in same order than serialiser and deserializer
|
||||||
RsGxsGroupId mGroupId;
|
RsGxsGroupId mGroupId;
|
||||||
RsGxsMessageId mMsgId;
|
RsGxsMessageId mMsgId;
|
||||||
|
@ -111,27 +111,6 @@ typedef t_RsGxsGenericDataTemporaryMapVector<RsNxsMsg> RsNxsMsgDa
|
|||||||
typedef t_RsGxsGenericDataTemporaryList<RsNxsGrp> RsNxsGrpDataTemporaryList ;
|
typedef t_RsGxsGenericDataTemporaryList<RsNxsGrp> RsNxsGrpDataTemporaryList ;
|
||||||
typedef t_RsGxsGenericDataTemporaryList<RsNxsMsg> RsNxsMsgDataTemporaryList ;
|
typedef t_RsGxsGenericDataTemporaryList<RsNxsMsg> RsNxsMsgDataTemporaryList ;
|
||||||
|
|
||||||
#ifdef UNUSED
|
|
||||||
template<class T>
|
|
||||||
class RsGxsMetaDataTemporaryMapVector: public std::vector<T*>
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual ~RsGxsMetaDataTemporaryMapVector()
|
|
||||||
{
|
|
||||||
clear() ;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual void clear()
|
|
||||||
{
|
|
||||||
for(typename RsGxsMetaDataTemporaryMapVector<T>::iterator it = this->begin();it!=this->end();++it)
|
|
||||||
if(it->second != NULL)
|
|
||||||
delete it->second ;
|
|
||||||
std::vector<T*>::clear() ;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
inline RsGxsGrpMsgIdPair getMsgIdPair(RsNxsMsg& msg)
|
inline RsGxsGrpMsgIdPair getMsgIdPair(RsNxsMsg& msg)
|
||||||
{
|
{
|
||||||
return RsGxsGrpMsgIdPair(std::make_pair(msg.grpId, msg.msgId));
|
return RsGxsGrpMsgIdPair(std::make_pair(msg.grpId, msg.msgId));
|
||||||
@ -146,7 +125,7 @@ inline RsGxsGrpMsgIdPair getMsgIdPair(RsGxsMsgItem& msg)
|
|||||||
* Does message clean up based on individual group expirations first
|
* Does message clean up based on individual group expirations first
|
||||||
* if avialable. If not then deletion s
|
* if avialable. If not then deletion s
|
||||||
*/
|
*/
|
||||||
class RsGxsMessageCleanUp //: public RsThread
|
class RsGxsMessageCleanUp
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -166,11 +145,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
bool clean();
|
bool clean();
|
||||||
|
|
||||||
/*!
|
|
||||||
* TODO: Rather than manual progressions consider running through a thread
|
|
||||||
*/
|
|
||||||
//virtual void data_tick(){}
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
RsGeneralDataService* const mDs;
|
RsGeneralDataService* const mDs;
|
||||||
|
@ -146,7 +146,6 @@ void init_item(RsGxsMsgMetaData* metaMsg)
|
|||||||
|
|
||||||
init_random(metaMsg->mGroupId) ;
|
init_random(metaMsg->mGroupId) ;
|
||||||
init_random(metaMsg->mMsgId) ;
|
init_random(metaMsg->mMsgId) ;
|
||||||
metaMsg->refcount = 1;
|
|
||||||
init_random(metaMsg->mThreadId) ;
|
init_random(metaMsg->mThreadId) ;
|
||||||
init_random(metaMsg->mParentId) ;
|
init_random(metaMsg->mParentId) ;
|
||||||
init_random(metaMsg->mOrigMsgId) ;
|
init_random(metaMsg->mOrigMsgId) ;
|
||||||
|
Loading…
Reference in New Issue
Block a user