chore: add missing semicolon in channel.ts

This commit is contained in:
Joe Previte 2021-02-25 12:41:01 -07:00
parent 38f555e218
commit c6e6f8e2b3
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -303,7 +303,7 @@ export class ExtensionEnvironmentChannel implements IServerChannel {
const newPath = extension.extensionLocation.fsPath; const newPath = extension.extensionLocation.fsPath;
this.log.warn(`${oldPath} has been overridden ${newPath}`); this.log.warn(`${oldPath} has been overridden ${newPath}`);
} }
uniqueExtensions.set(id, extension) uniqueExtensions.set(id, extension);
}); });
}); });
}); });