(object:RegisterableObject)
| 199 | * @param {RegisterableObject} object - object to remove |
| 200 | */ |
| 201 | export function deregisterObject(object:RegisterableObject):void { |
| 202 | var objectId:string = object.getId(); |
| 203 | deregisterObjectById(objectId); |
| 204 | } |
| 205 | |
| 206 | function deregisterObjectById(objectId:string) { |
| 207 | if (Runtime.hasObject(objectId)) { |
nothing calls this directly
no test coverage detected