diff options
| author | Orkun Tokdemir <orkun.tokdemir@qt.io> | 2024-11-28 15:10:17 +0100 |
|---|---|---|
| committer | Orkun Tokdemir <orkun.tokdemir@qt.io> | 2024-12-05 13:28:25 +0000 |
| commit | f6f88c751c9d0714396a10f999d640c3c7fd1bf6 (patch) | |
| tree | 6ecbfe2cfcedb6c1ea0ebe798bb26702f137eafb /qt-cpp | |
| parent | 2962ed4dfc534615091352de3bc10c60d4e6b27a (diff) | |
qt-cpp: Remove sending action from qt-cpp's reset()
Since qt-core's reset() is already sending the action and it also
executes qt-cpp's reset(), there is no need to send the action from
qt-cpp's reset().
Task-number: VSCODEEXT-90
Change-Id: Ie33e29cf4e68d9571c731ecd96426ad5b4249b61
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'qt-cpp')
| -rw-r--r-- | qt-cpp/src/commands/reset-qt-ext.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/qt-cpp/src/commands/reset-qt-ext.ts b/qt-cpp/src/commands/reset-qt-ext.ts index 985dbf1..23c46da 100644 --- a/qt-cpp/src/commands/reset-qt-ext.ts +++ b/qt-cpp/src/commands/reset-qt-ext.ts @@ -5,10 +5,8 @@ import * as vscode from 'vscode'; import { kitManager } from '@/extension'; import { EXTENSION_ID } from '@/constants'; -import { telemetry } from 'qt-lib'; async function reset() { - telemetry.sendAction('reset'); await kitManager.reset(); } |
