remove bad timeout

This commit is contained in:
Joao Moreno
2018-07-10 18:15:09 +02:00
parent 831da61a7a
commit 044d192df0

View File

@@ -81,8 +81,6 @@ export async function activate(context: ExtensionContext): Promise<API> {
const telemetryReporter = new TelemetryReporter(name, version, aiKey);
deactivateTasks.push(() => telemetryReporter.dispose());
await new Promise(c => setTimeout(c, 10000));
const config = workspace.getConfiguration('git', null);
const enabled = config.get<boolean>('enabled');