From 0014af92dd9ee925173315a815fc17cde4adf712 Mon Sep 17 00:00:00 2001 From: keinhaar Date: Wed, 15 Feb 2023 01:05:07 +0100 Subject: [PATCH] Switched of analytics ping and updatenotification (#419) 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. --- .../google/gdt/eclipse/suite/preferences/GdtPreferences.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/preferences/GdtPreferences.java b/plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/preferences/GdtPreferences.java index afdbd160..a9822dc0 100644 --- a/plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/preferences/GdtPreferences.java +++ b/plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/preferences/GdtPreferences.java @@ -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 getAddedNewWizardActionsForPerspective(String perspectiveId) {