MCPcopy Create free account
hub / github.com/dynjs/dynjs / remove

Method remove

src/main/java/org/dynjs/runtime/DynObject.java:642–649  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

640 }
641
642 @Override
643 public boolean remove(Object o) {
644 if ( hasProperty(null, o.toString())) {
645 delete( null, o.toString(), false );
646 return true;
647 }
648 return false;
649 }
650
651 @Override
652 public boolean containsAll(Collection<?> c) {

Callers

nothing calls this directly

Calls 3

hasPropertyMethod · 0.65
deleteMethod · 0.65
toStringMethod · 0.45

Tested by

no test coverage detected