Iterator it=hs.keySet().iterator();
while(it.hasNext())
{
String str=(String)it.next();
if (str.contains('condition'))
it.remove();
}
Iterator it=hs.keySet().iterator();
while(it.hasNext())
{
String str=(String)it.next();
if (str.contains('condition'))
it.remove();
}