Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeneviève Bastien2019-04-18 19:53:46 +0000
committerGenevieve Bastien2019-05-15 14:37:50 +0000
commit26b644ef970c587c5cdf284c0d48818c7c7182e9 (patch)
treeeb404fb51a85490aaf106c9204b65e20abc66c04
parent45c5496989562c6cbb716ad7796adc61a787d475 (diff)
downloadorg.eclipse.tracecompass-26b644ef970c587c5cdf284c0d48818c7c7182e9.tar.gz
org.eclipse.tracecompass-26b644ef970c587c5cdf284c0d48818c7c7182e9.tar.xz
org.eclipse.tracecompass-26b644ef970c587c5cdf284c0d48818c7c7182e9.zip
tmf.ui: Remove messages related to callstack view
The view was moved to the profiling plugins and these messages are not used anymore Change-Id: I0ee5e46dec4117ec15fbcb3311d03a3b723e5625 Signed-off-by: Geneviève Bastien <gbastien+lttng@versatic.net> Reviewed-on: https://git.eclipse.org/r/140850 Tested-by: CI Bot Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com> Tested-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
-rw-r--r--tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/Messages.java17
-rw-r--r--tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/messages.properties18
2 files changed, 0 insertions, 35 deletions
diff --git a/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/Messages.java b/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/Messages.java
index 3f4a48c6d1..71bb30832f 100644
--- a/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/Messages.java
+++ b/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/Messages.java
@@ -350,23 +350,6 @@ public class Messages extends NLS {
public static String TmfView_UnpinActionText;
public static String TmfView_ResetScaleActionNameText;
- public static String CallStackPresentationProvider_Process;
- public static String CallStackPresentationProvider_Thread;
- public static String CallStackView_FunctionColumn;
- public static String CallStackView_PidTidColumn;
- public static String CallStackView_DepthColumn;
- public static String CallStackView_EntryTimeColumn;
- public static String CallStackView_ExitTimeColumn;
- public static String CallStackView_DurationColumn;
- public static String CallStackView_ThreadColumn;
- public static String CallStackView_StackInfoNotAvailable;
- public static String CallStackView_SortByThreadName;
- public static String CallStackView_SortByThreadId;
- public static String CallStackView_SortByThreadTime;
-
- public static String CallStackView_ConfigureSymbolProvidersText;
- public static String CallStackView_ConfigureSymbolProvidersTooltip;
-
public static String CopyToClipboardOperation_TaskName;
public static String CopyToClipboardOperation_OutOfMemoryErrorTitle;
public static String CopyToClipboardOperation_OutOfMemoryErrorMessage;
diff --git a/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/messages.properties b/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/messages.properties
index dc7a4d18af..1d830eb29a 100644
--- a/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/messages.properties
+++ b/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/messages.properties
@@ -347,24 +347,6 @@ TmfView_PinActionToolTipText=Pin View
TmfView_PinToActionText=Pin to {0}
TmfView_UnpinActionText=Unpin View
-# org.eclipse.tracecompass.tmf.ui.views.callstack
-CallStackPresentationProvider_Process=Process
-CallStackPresentationProvider_Thread=Thread
-CallStackView_FunctionColumn=Name
-CallStackView_PidTidColumn=PID/TID
-CallStackView_DepthColumn=Depth
-CallStackView_EntryTimeColumn=Start time
-CallStackView_ExitTimeColumn=End time
-CallStackView_DurationColumn=Duration
-CallStackView_ThreadColumn=Thread
-CallStackView_StackInfoNotAvailable=Stack info not available
-CallStackView_SortByThreadName=Sort threads by thread name
-CallStackView_SortByThreadId=Sort threads by thread id
-CallStackView_SortByThreadTime=Sort threads by start time
-
-CallStackView_ConfigureSymbolProvidersText=Configure symbol providers
-CallStackView_ConfigureSymbolProvidersTooltip=Configure how the addresses are mapped to function names
-
CopyToClipboardOperation_TaskName=Copying to Clipboard
CopyToClipboardOperation_OutOfMemoryErrorTitle=Out Of Memory Error
CopyToClipboardOperation_OutOfMemoryErrorMessage=The full selection cannot be copied to the clipboard. Press OK to abort.

Back to the top