From 3c9d34b5fa12de426455360e4aaf66b0aca97170 Mon Sep 17 00:00:00 2001 From: keinhaar <10001689+keinhaar@users.noreply.github.com> Date: Mon, 12 Dec 2022 13:22:34 +0100 Subject: [PATCH] Switched of analytics ping and updatenotification There are 2 reasons for switching this of. 1. It's illegal in the EU to send user data without prior permission. 2. Google does no longer support this project in any way. So why should we send data to them? --- .../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) {