Wraps the null object, since Deque does not support null values
(Object o)
| 164 | * Wraps the null object, since Deque does not support null values |
| 165 | */ |
| 166 | @SuppressWarnings("PMD.CompareObjectsWithEquals") |
| 167 | private static Object wrap(Object o) |
| 168 | { |
| 169 | return (o == null) ? NULL : o; |
| 170 | } |
| 171 | } |