(Collection<?> collection)
| 6853 | } |
| 6854 | |
| 6855 | static final boolean isEmpty(Collection<?> collection) { |
| 6856 | return collection == null || collection.isEmpty(); |
| 6857 | } |
| 6858 | |
| 6859 | static final boolean isNotEmpty(Iterable<?> it) { |
| 6860 | return !isEmpty(it); |
no test coverage detected