perf_30 - Pull-up synthetic accessor bypass to TestCase
diff --git a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/junit/extension/TestCase.java b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/junit/extension/TestCase.java
index 6b8d1f1..a90f5ba 100644
--- a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/junit/extension/TestCase.java
+++ b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/junit/extension/TestCase.java
@@ -198,4 +198,12 @@
 	// make it public to avoid compiler warning about synthetic access
 	super.stopMeasuring();
 }
+public void assertPerformance() {
+	// make it public to avoid compiler warning about synthetic access
+	super.assertPerformance();
+}
+public void commitMeasurements() {
+	// make it public to avoid compiler warning about synthetic access
+	super.commitMeasurements();
+}
 }