tmf: Remove toString on string objects
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / filter / model / TmfFilterCompareNode.java
index 2d18d80b3026d0ab1a3f807adf91f862b62ff628..9f9ad0082acdd5dae191e3720ffa9fa80b5ff5f6 100644 (file)
@@ -178,7 +178,7 @@ public class TmfFilterCompareNode extends TmfFilterAspectNode {
             }
         } else if (fType == Type.ALPHA) {
             String valueString = value.toString();
-            int comp = (int) Math.signum(valueString.compareTo(fValue.toString()));
+            int comp = (int) Math.signum(valueString.compareTo(fValue));
             return (comp == fResult) ^ fNot;
         } else if (fType == Type.TIMESTAMP) {
             if (fValueTimestamp != null) {
This page took 0.024812 seconds and 5 git commands to generate.