Removes a parent - child connection @param place child to be removed
(final Place place)
| 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 |