tmf: Remove unused local variable
authorSonia Farrah <sonia.farrah@ericsson.com>
Wed, 4 May 2016 20:51:01 +0000 (16:51 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Sun, 15 May 2016 23:50:10 +0000 (19:50 -0400)
Change-Id: I67c9c4406c1f1cb56114ee783109df71dbb0a7e9
Signed-off-by: Sonia Farrah <sonia.farrah@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/72091
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Tested-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/internal/tmf/core/trace/indexer/FlatArray.java

index ffe3da9ccf9eb63ce39a858f7aa48c20eabc9697..a404a2c9ab0fbe49b0c55ac3c9f333e2fcc00fce 100644 (file)
@@ -136,7 +136,6 @@ public class FlatArray extends AbstractFileCheckpointCollection {
                 lower = middle + 1;
             }
         }
-        long insertionPoint = lower;
-        return -(insertionPoint) - 1;
+        return -(lower) - 1;
     }
 }
This page took 0.026309 seconds and 5 git commands to generate.