mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
Removes ==
This commit is contained in:
@@ -35,8 +35,7 @@ export class MainThreadTimeline implements MainThreadTimelineShape {
|
||||
|
||||
const emitters = this._providerEmitters;
|
||||
let onDidChange = emitters.get(provider.source);
|
||||
// eslint-disable-next-line eqeqeq
|
||||
if (onDidChange == null) {
|
||||
if (onDidChange === undefined) {
|
||||
onDidChange = new Emitter<URI | undefined>();
|
||||
emitters.set(provider.source, onDidChange);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user