INT-1263, more MessageHistory related changes

This commit is contained in:
Oleg Zhurakousky
2010-09-22 22:18:45 -04:00
parent d7e1041ed4
commit 0be4d2ef60
15 changed files with 78 additions and 19 deletions

View File

@@ -88,15 +88,6 @@ public class MessageHistory implements List<Properties> {
return this.components.contains(o);
}
public boolean containsComponent(String name) {
for (Properties properties : components) {
if (properties.getProperty("name").equals(name)){
return true;
}
}
return false;
}
public boolean containsAll(Collection<?> c) {
return this.components.containsAll(c);
}