Unwraps the null object, since Deque does not support null values
(Object o)
| 155 | * Unwraps the null object, since Deque does not support null values |
| 156 | */ |
| 157 | @SuppressWarnings("PMD.CompareObjectsWithEquals") |
| 158 | private static Object unwrap(Object o) |
| 159 | { |
| 160 | return (NULL == o) ? null : o; |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Wraps the null object, since Deque does not support null values |