(Collection<?> collection)
| 6849 | } |
| 6850 | |
| 6851 | static final boolean isNotEmpty(Collection<?> collection) { |
| 6852 | return !isEmpty(collection); |
| 6853 | } |
| 6854 | |
| 6855 | static final boolean isEmpty(Collection<?> collection) { |
| 6856 | return collection == null || collection.isEmpty(); |
no test coverage detected