集合NULL判断 @param collection @return
(Collection collection)
| 662 | * @return |
| 663 | */ |
| 664 | private boolean isEmpty(Collection collection) { |
| 665 | if (collection == null || collection.isEmpty()) { |
| 666 | return true; |
| 667 | } |
| 668 | return false; |
| 669 | } |
| 670 | |
| 671 | /** |
| 672 | * 返回当前数据库打开关闭计数 |
no outgoing calls
no test coverage detected