}
public void removeWeblogEntryAttribute(String name, WeblogEntry entry)
throws WebloggerException {
for (Iterator it = entry.getEntryAttributes().iterator(); it.hasNext();) {
WeblogEntryAttribute entryAttribute = (WeblogEntryAttribute) it.next();
if (entryAttribute.getName().equals(name)) {
//Remove it from database
this.strategy.remove(entryAttribute);
//Remove it from the collection
it.remove();
}