< Previous by Date Date Index Next by Date >
  Thread Index  

[reSIProcate-users] Patch for remove domain from TU


It's possible to add a function for remove the domain from TU ? I don't know how to use GITHUB to submit the patch, thx.


void TransactionUser::removeDomain(const Data& domain)
{
DomainList::iterator it = mDomainList.find(Data(domain).lowercase());
if (it != mDomainList.end())
{
mDomainList.erase(it);
}
}