Skip to content

Commit 0014af9

Browse files
authored
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.
1 parent ff33cda commit 0014af9

File tree

1 file changed

+2
-2
lines changed
  • plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/preferences

1 file changed

+2
-2
lines changed

plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/preferences/GdtPreferences.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ public final class GdtPreferences {
136136
private static final String VERSION_FOR_LAST_FORCED_REBUILD_PREFIX = "versionForLastForcedRebuild_";
137137

138138
public static boolean areUpdateNotificationsEnabled() {
139-
return getConfigurationPreferences().getBoolean(UPDATE_NOTIFICATIONS, true);
139+
return getConfigurationPreferences().getBoolean(UPDATE_NOTIFICATIONS, false);
140140
}
141141

142142
public static boolean getCaptureAnalytics() {
143-
return getConfigurationPreferences().getBoolean(CAPTURE_ANALYTICS, true);
143+
return getConfigurationPreferences().getBoolean(CAPTURE_ANALYTICS, false);
144144
}
145145

146146
public static List<String> getAddedNewWizardActionsForPerspective(String perspectiveId) {

0 commit comments

Comments
 (0)