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

Method removeListFor

code/src/java/pcgen/cdom/base/CDOMObject.java:638–646  ·  view source on GitHub ↗
(ListKey<T> key)

Source from the content-addressed store, hash-verified

636 }
637
638 public final <T> List<T> removeListFor(ListKey<T> key)
639 {
640 List<T> out = listChar == null ? null : listChar.removeListFor(key);
641 if (out != null && listChar.isEmpty())
642 {
643 listChar = null;
644 }
645 return out;
646 }
647
648 public final <T> boolean removeFromListFor(ListKey<T> key, T element)
649 {

Callers 1

ownBonusesMethod · 0.95

Calls 2

removeListForMethod · 0.65
isEmptyMethod · 0.65

Tested by

no test coverage detected