(Collection<?> collection)
| 79 | } |
| 80 | |
| 81 | @Override |
| 82 | public boolean containsAll(Collection<?> collection) { |
| 83 | if (collection instanceof ImmutableEnumSet<?>) { |
| 84 | collection = ((ImmutableEnumSet<?>) collection).delegate; |
| 85 | } |
| 86 | return delegate.containsAll(collection); |
| 87 | } |
| 88 | |
| 89 | @Override |
| 90 | public boolean isEmpty() { |
nothing calls this directly
no test coverage detected