mirror of
https://github.com/scratchfoundation/scratch-desktop.git
synced 2024-12-22 21:52:31 -05:00
remove now-unused clearDidOptIn
This commit is contained in:
parent
bcc9ff5c1e
commit
7f8d0d7084
2 changed files with 0 additions and 6 deletions
|
@ -36,9 +36,6 @@ class ScratchDesktopTelemetry {
|
|||
set didOptIn (value) {
|
||||
this._telemetryClient.didOptIn = value;
|
||||
}
|
||||
clearDidOptIn () {
|
||||
this._telemetryClient.clearDidOptIn();
|
||||
}
|
||||
|
||||
appWasOpened () {
|
||||
this._telemetryClient.addEvent('app::open', {...EVENT_TEMPLATE, ...APP_INFO});
|
||||
|
|
|
@ -185,9 +185,6 @@ class TelemetryClient {
|
|||
set didOptIn (value) {
|
||||
this._store.set('optIn', !!value);
|
||||
}
|
||||
clearDidOptIn () {
|
||||
this._store.delete('optIn');
|
||||
}
|
||||
|
||||
/**
|
||||
* Semi-persistent unique ID for this client
|
||||
|
|
Loading…
Reference in a new issue