Remove @Parameters for tests that don't use them.

Locally "atest android.libcore.regression.ByteBufferPerfTest#time_ByteBuffer_allocate"
was crashing with ArrayIndexOutOfBoundsException. With annotation
removed it works fine.

Bug: n/a
Test: atest android.libcore.regression.ByteBufferPerfTest#time_ByteBuffer_allocate

Change-Id: Ib81529b553bd7169d18ba6b99eff38386ad0f9e1
diff --git a/apct-tests/perftests/core/src/android/libcore/regression/ByteBufferPerfTest.java b/apct-tests/perftests/core/src/android/libcore/regression/ByteBufferPerfTest.java
index 4cf46e5..f01ac02 100644
--- a/apct-tests/perftests/core/src/android/libcore/regression/ByteBufferPerfTest.java
+++ b/apct-tests/perftests/core/src/android/libcore/regression/ByteBufferPerfTest.java
@@ -565,7 +565,6 @@
     }
 
     @Test
-    @Parameters(method = "getData")
     public void time_new_byteArray() throws Exception {
         final BenchmarkState state = mBenchmarkRule.getState();
         while (state.keepRunning()) {
@@ -574,7 +573,6 @@
     }
 
     @Test
-    @Parameters(method = "getData")
     public void time_ByteBuffer_allocate() throws Exception {
         final BenchmarkState state = mBenchmarkRule.getState();
         while (state.keepRunning()) {