Refactor TmfExperiment
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / TmfTimeRange.java
index 794d3746a1a0615e0b2d8fd67ab256ea4f0688bb..71886dbbd2c8247ae160d76fa48e7e6d91baff37 100644 (file)
@@ -16,7 +16,6 @@ package org.eclipse.linuxtools.tmf.core.event;
 /**
  * A utility class to define and manage time ranges.
  * 
- * @since 1.0
  * @version 1.0
  * @author Francois Chouinard
  * 
@@ -163,7 +162,7 @@ public final class TmfTimeRange implements Cloneable {
      * @see java.lang.Object#clone()
      */
     @Override
-    public TmfTimeRange clone() {
+    public TmfTimeRange clone() throws CloneNotSupportedException {
         TmfTimeRange clone = null;
         try {
             clone = (TmfTimeRange) super.clone();
This page took 0.027276 seconds and 5 git commands to generate.