118119120121122123124125126
public boolean remove() { Location location = entity.getLocation(); BaseEntity state = entity.getState(); boolean success = entity.remove(); if (state != null && success) { changeSet.add(new EntityRemove(location, state)); } return success; }