提交 d36763c7 编写于 作者: J Johannes Rieken

fix strict null issue

上级 80ba4f45
......@@ -97,8 +97,8 @@ class LeakageMonitor {
}
return () => {
let count = (this._stacks.get(stack) || 0);
this._stacks.set(stack, count - 1);
let count = (this._stacks!.get(stack) || 0);
this._stacks!.set(stack, count - 1);
};
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册