diff --git a/src/performancetest/java/teetime/examples/experiment01/MethodCallThroughputAnalysis1.java b/src/performancetest/java/teetime/examples/experiment01/MethodCallThroughputAnalysis1.java
index c618f5595fa704a3e590fbb6561d12a43de01c76..cde42bd77e231c073f8c0042bda1510c2f35774e 100644
--- a/src/performancetest/java/teetime/examples/experiment01/MethodCallThroughputAnalysis1.java
+++ b/src/performancetest/java/teetime/examples/experiment01/MethodCallThroughputAnalysis1.java
@@ -17,7 +17,6 @@ package teetime.examples.experiment01;
 
 import java.util.List;
 
-import teetime.framework.OldAnalysis;
 import teetime.util.ConstructorClosure;
 import teetime.util.TimestampObject;
 
@@ -26,7 +25,7 @@ import teetime.util.TimestampObject;
  *
  * @since 1.10
  */
-public class MethodCallThroughputAnalysis1 extends OldAnalysis {
+public class MethodCallThroughputAnalysis1 {
 
 	private long numInputObjects;
 	private ConstructorClosure<TimestampObject> inputObjectCreator;
@@ -34,9 +33,7 @@ public class MethodCallThroughputAnalysis1 extends OldAnalysis {
 	private List<TimestampObject> timestampObjects;
 	private Runnable runnable;
 
-	@Override
 	public void init() {
-		super.init();
 		this.runnable = this.buildPipeline();
 	}
 
@@ -77,9 +74,7 @@ public class MethodCallThroughputAnalysis1 extends OldAnalysis {
 		return runnable;
 	}
 
-	@Override
 	public void start() {
-		super.start();
 		this.runnable.run();
 	}