提交 e41b8290 编写于 作者: A Alex Dima

Fix strict null check

上级 471a786c
......@@ -136,7 +136,7 @@ export class ExtensionPoint<T> implements IExtensionPoint<T> {
}
private _handle(): void {
if (this._handler === null || this._users === null) {
if (this._handler === null || this._users === null || this._delta === null) {
return;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册