unregisterReclaimable method
Implementation
@override
void unregisterReclaimable(IReclaimable reclaimable)
{
// Remove reclaimable.
if ( this._ownedReclaimables == null ||
!this._ownedReclaimables!.remove(reclaimable) ) {
throw new Exception("Reclaimable.unregisterReclaimable(): Ownership error: Cannot unregister reclaimable we never owned.");
}
}