From 9aa1df0d006fe44ed5ac85ff8bfc72a7b56b72e1 Mon Sep 17 00:00:00 2001 From: "Svetlana.Zemlyanskaya" Date: Thu, 22 Nov 2018 22:14:38 +0100 Subject: [PATCH] IDEA-CR-40376: FUS: extend a list of replaced actions (cherry picked from commit 06895f3204c9b261b7eef4e6968d4324b19d6d27) --- .../fus/actions/persistence/ActionsCollectorImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platform/platform-impl/src/com/intellij/internal/statistic/collectors/fus/actions/persistence/ActionsCollectorImpl.java b/platform/platform-impl/src/com/intellij/internal/statistic/collectors/fus/actions/persistence/ActionsCollectorImpl.java index 7ccd7b0caa9e..28e8ff543816 100644 --- a/platform/platform-impl/src/com/intellij/internal/statistic/collectors/fus/actions/persistence/ActionsCollectorImpl.java +++ b/platform/platform-impl/src/com/intellij/internal/statistic/collectors/fus/actions/persistence/ActionsCollectorImpl.java @@ -31,6 +31,9 @@ public class ActionsCollectorImpl extends ActionsCollector implements Persistent static { ourPrefixesBlackList.put("RemoteTool_", "Remote External Tool"); ourPrefixesBlackList.put("Tool_", "External Tool"); + ourPrefixesBlackList.put("Ant_", "Ant_"); + ourPrefixesBlackList.put("Maven_", "Maven_"); + ourPrefixesBlackList.put("ExternalSystem_", "ExternalSystem_"); ourPrefixesBlackList.put("Macro.", "Invoke Macro"); }