Skip to content

Commit

Permalink
Switched of analytics ping and updatenotification (#419)
Browse files Browse the repository at this point in the history
We don't have access at this time to this data, a follow-up change set
might request that the user opt in to some other analytics.
  • Loading branch information
keinhaar authored Feb 15, 2023
1 parent ff33cda commit 0014af9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ public final class GdtPreferences {
private static final String VERSION_FOR_LAST_FORCED_REBUILD_PREFIX = "versionForLastForcedRebuild_";

public static boolean areUpdateNotificationsEnabled() {
return getConfigurationPreferences().getBoolean(UPDATE_NOTIFICATIONS, true);
return getConfigurationPreferences().getBoolean(UPDATE_NOTIFICATIONS, false);
}

public static boolean getCaptureAnalytics() {
return getConfigurationPreferences().getBoolean(CAPTURE_ANALYTICS, true);
return getConfigurationPreferences().getBoolean(CAPTURE_ANALYTICS, false);
}

public static List<String> getAddedNewWizardActionsForPerspective(String perspectiveId) {
Expand Down

0 comments on commit 0014af9

Please sign in to comment.