mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
removed comments
This commit is contained in:
parent
b5976e195e
commit
7ee527ecbd
@ -453,15 +453,19 @@ bool RsAccountsDetail::getPreferredAccountId(RsPeerId &id)
|
||||
bool RsAccountsDetail::getAccountIds(std::list<RsPeerId> &ids)
|
||||
{
|
||||
std::map<RsPeerId, AccountDetails>::iterator it;
|
||||
#ifdef DEBUG_ACCOUNTS
|
||||
std::cerr << "getAccountIds:" << std::endl;
|
||||
#endif
|
||||
|
||||
for(it = mAccounts.begin(); it != mAccounts.end(); ++it)
|
||||
{
|
||||
#ifdef DEBUG_ACCOUNTS
|
||||
std::cerr << "SSL Id: " << it->second.mSslId << " PGP Id " << it->second.mPgpId;
|
||||
std::cerr << " PGP Name: " << it->second.mPgpName;
|
||||
std::cerr << " PGP Email: " << it->second.mPgpEmail;
|
||||
std::cerr << " Location: " << it->second.mLocation;
|
||||
std::cerr << std::endl;
|
||||
#endif
|
||||
|
||||
ids.push_back(it->first);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user