* Clear error state * 清除错误状态
()
| 493 | * 清除错误状态 |
| 494 | */ |
| 495 | private clearErrorState(): void { |
| 496 | if (this._errorSign) { |
| 497 | if (this._displayObject && this._errorSign.displayObject) { |
| 498 | this._displayObject.removeChild(this._errorSign.displayObject); |
| 499 | } |
| 500 | GLoader._errorSignPool.returnObject(this._errorSign); |
| 501 | this._errorSign = null; |
| 502 | } |
| 503 | } |
| 504 | |
| 505 | /** |
| 506 | * Update content layout |
no test coverage detected