MCPcopy Create free account
hub / github.com/PCGen/pcgen / wrap

Method wrap

PCGen-base/code/src/java/pcgen/base/util/MappedDeque.java:166–170  ·  view source on GitHub ↗

Wraps the null object, since Deque does not support null values

(Object o)

Source from the content-addressed store, hash-verified

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}

Callers 2

pushMethod · 0.95
setMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected