tmf.ui: fix modifier order in TmfCommonXLineChartViewer
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Thu, 30 Apr 2015 01:13:35 +0000 (21:13 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Thu, 30 Apr 2015 14:55:48 +0000 (10:55 -0400)
Change-Id: I050bcec1eac37a56b535085da278840437bb3160
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/46832
Reviewed-by: Hudson CI
Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/viewers/xycharts/linecharts/TmfCommonXLineChartViewer.java

index e42a0155cd4da63541bba512935f4ebd99122ec5..e766dc9ea293df066eadeaeee49cac5a629d0289 100644 (file)
@@ -205,7 +205,7 @@ public abstract class TmfCommonXLineChartViewer extends TmfXYChartViewer {
      *            The number of steps in the x axis.
      * @return The time values (converted to double) to match every step.
      */
-    protected final static double[] getXAxis(long start, long end, int nb) {
+    protected static final double[] getXAxis(long start, long end, int nb) {
 
         double timestamps[] = new double[nb];
         long steps = (end - start);
This page took 0.026076 seconds and 5 git commands to generate.