os.linux: Move buildThreadAttributeName() methods to Attributes interface
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / analysis / os / linux / ui / views / controlflow / ControlFlowView.java
index 1835f8f48c9adefafb6e978033d95d293e672da1..c31fd207797655cd8364f9c2507c8ca7e822d883 100644 (file)
@@ -32,7 +32,6 @@ import org.eclipse.jface.viewers.StructuredSelection;
 import org.eclipse.swt.widgets.Composite;
 import org.eclipse.tracecompass.analysis.os.linux.core.kernel.KernelAnalysisModule;
 import org.eclipse.tracecompass.internal.analysis.os.linux.core.kernel.Attributes;
-import org.eclipse.tracecompass.internal.analysis.os.linux.core.kernel.handlers.KernelEventHandlerUtils;
 import org.eclipse.tracecompass.internal.analysis.os.linux.ui.Activator;
 import org.eclipse.tracecompass.internal.analysis.os.linux.ui.Messages;
 import org.eclipse.tracecompass.internal.analysis.os.linux.ui.actions.FollowThreadAction;
@@ -284,7 +283,7 @@ public class ControlFlowView extends AbstractStateSystemTimeGraphView {
                     for (int threadQuark : threadQuarks) {
                         String threadAttributeName = ssq.getAttributeName(threadQuark);
 
-                        Pair<Integer, Integer> entryKey = KernelEventHandlerUtils.parseThreadAttributeName(threadAttributeName);
+                        Pair<Integer, Integer> entryKey = Attributes.parseThreadAttributeName(threadAttributeName);
                         int threadId = entryKey.getFirst();
 
                         if (threadId < 0) { // ignore the 'unknown' (-1) thread
This page took 0.025914 seconds and 5 git commands to generate.