tmf/lttng: Fix newly-introduced Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / statistics / TmfStateStatistics.java
index 8b9ff6ed51c5e40583ea8e041a5fcd3ca044415b..7eeff57631f92862c3b0c2517f1fbf9d1c42076e 100644 (file)
@@ -330,7 +330,7 @@ public class TmfStateStatistics implements ITmfStatistics {
         return map;
     }
 
-    protected long checkStartTime(ITmfTimestamp startTs) {
+    private long checkStartTime(ITmfTimestamp startTs) {
         long start = startTs.normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
         if (start < stats.getStartTime()) {
             return stats.getStartTime();
@@ -338,7 +338,7 @@ public class TmfStateStatistics implements ITmfStatistics {
         return start;
     }
 
-    protected long checkEndTime(ITmfTimestamp endTs) {
+    private long checkEndTime(ITmfTimestamp endTs) {
         long end = endTs.normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
         if (end > stats.getCurrentEndTime()) {
             return stats.getCurrentEndTime();
This page took 0.025385 seconds and 5 git commands to generate.