Refactor TmfExperiment
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / TmfTimestamp.java
index 7264468d2a93580dba7f51de04f60e639d008efb..601ac3f82993b5024c11235dd76d90dfd6c7fb83 100644 (file)
 
 package org.eclipse.linuxtools.tmf.core.event;
 
+
 /**
  * A generic timestamp implementation. The timestamp is represented by the
  * tuple { value, scale, precision }.
  * 
- * @since 1.0
  * @version 1.0
  * @author Francois Chouinard
  */
@@ -186,7 +186,7 @@ public class TmfTimestamp implements ITmfTimestamp, Cloneable {
      * @see org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp#normalize(long, int)
      */
     @Override
-    public ITmfTimestamp normalize(final long offset, final int scale) throws ArithmeticException {
+    public ITmfTimestamp normalize(final long offset, final int scale) {
 
         long value = fValue;
         int precision = fPrecision;
This page took 0.024407 seconds and 5 git commands to generate.