Tests whether the given PooledObject is null or wraps a null. @param pooledObject the PooledObject to test, may be null. @return whether the given PooledObject is null or wraps a null. @since 2.12.0
(final PooledObject<?> pooledObject)
| 54 | * @since 2.12.0 |
| 55 | */ |
| 56 | static boolean isNull(final PooledObject<?> pooledObject) { |
| 57 | return getObject(pooledObject) == null; |
| 58 | } |
| 59 |
no outgoing calls