{@inheritDoc}
(Object o)
| 300 | |
| 301 | /** {@inheritDoc} */ |
| 302 | @Override |
| 303 | public boolean remove(Object o) { |
| 304 | int oldSize = size(); |
| 305 | boolean success = delegate.remove(o); |
| 306 | if (success) { |
| 307 | fireElementRemovedEvent(o); |
| 308 | fireSizeChangedEvent(oldSize, size()); |
| 309 | } |
| 310 | return success; |
| 311 | } |
| 312 | |
| 313 | /** {@inheritDoc} */ |
| 314 | @Override |
nothing calls this directly
no test coverage detected