MCPcopy Create free account
hub / github.com/Neop/mudmap2 / removeChild

Method removeChild

src/main/java/mudmap2/backend/Place.java:356–362  ·  view source on GitHub ↗

Removes a parent - child connection @param place child to be removed

(final Place place)

Source from the content-addressed store, hash-verified

354 * @param place child to be removed
355 */
356 public void removeChild(final Place place) {
357 if (place != null) {
358 children.remove(place);
359 place.parents.remove(this);
360 callWorldChangeListeners();
361 } // don't throw
362 }
363
364 /**
365 * Gets the child places

Callers 2

testRemoveChildMethod · 0.95
actionPerformedMethod · 0.80

Calls 2

removeMethod · 0.65

Tested by 1

testRemoveChildMethod · 0.76