(Animation cmp)
| 2234 | /// |
| 2235 | /// - `cmp`: component that would no longer receive animation events |
| 2236 | public void deregisterAnimated(Animation cmp) { |
| 2237 | if (animatableComponents != null) { |
| 2238 | animatableComponents.remove(cmp); |
| 2239 | } |
| 2240 | } |
| 2241 | |
| 2242 | /// {@inheritDoc} |
| 2243 | @Override |
no test coverage detected