2010-11-09 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug315307
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / histogram / HistogramContent.java
index c552b93984967992532a94e67429035149c5887e..a0fd0bb8a299514974accfb9ce573170f3146f7d 100644 (file)
@@ -180,6 +180,7 @@ public class HistogramContent {
        /**
         * Print all HistogramContent attributes, but the elements table.
         */
+    @SuppressWarnings("nls")
        public void printContentInfo() {
                System.out.println("startTime          : " + startTime);
                System.out.println("endTime            : " + endTime );
@@ -194,6 +195,7 @@ public class HistogramContent {
        /**
         * Print the data in the elements table.<p>
         */
+    @SuppressWarnings("nls")
        public void printTable() {
                for ( int x=0; x<elementTable.length; x++) {
                        System.out.println("X:" + x + " -> " + elementTable[x].intervalNbEvents + ":" + elementTable[x].intervalHeight + " (" + elementTable[x].firstIntervalTimestamp + ")");
This page took 0.027544 seconds and 5 git commands to generate.