diff options
author | Brett Chabot <brettchabot@google.com> | 2012-10-24 14:34:07 -0700 |
---|---|---|
committer | Brett Chabot <brettchabot@google.com> | 2012-10-24 14:51:21 -0700 |
commit | 41e173d4cb19a0eca95fe0d79dd05f501333b786 (patch) | |
tree | 0d99b2134eeebd10569e59f78ff900cb277f8225 /test-runner/src | |
parent | f2e005aa240ce888735af1988932004660cbee71 (diff) | |
download | frameworks_base-41e173d4cb19a0eca95fe0d79dd05f501333b786.zip frameworks_base-41e173d4cb19a0eca95fe0d79dd05f501333b786.tar.gz frameworks_base-41e173d4cb19a0eca95fe0d79dd05f501333b786.tar.bz2 |
Remove erroneous override of package-private method.
Change-Id: I8d473c1eb32f2513d01b3f7f14f0001286a6a9ca
Diffstat (limited to 'test-runner/src')
-rw-r--r-- | test-runner/src/android/test/InstrumentationTestRunner.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-runner/src/android/test/InstrumentationTestRunner.java b/test-runner/src/android/test/InstrumentationTestRunner.java index 91e403e..8e30875 100644 --- a/test-runner/src/android/test/InstrumentationTestRunner.java +++ b/test-runner/src/android/test/InstrumentationTestRunner.java @@ -555,7 +555,7 @@ public class InstrumentationTestRunner extends Instrumentation implements TestSu mTestRunner.runTest(); long runTime = System.currentTimeMillis() - startTime; - resultPrinter.print(mTestRunner.getTestResult(), runTime); + resultPrinter.printResult(mTestRunner.getTestResult(), runTime); } catch (Throwable t) { // catch all exceptions so a more verbose error message can be outputted writer.println(String.format("Test run aborted due to unexpected exception: %s", @@ -656,7 +656,7 @@ public class InstrumentationTestRunner extends Instrumentation implements TestSu super(writer); } - synchronized void print(TestResult result, long runTime) { + public synchronized void printResult(TestResult result, long runTime) { printHeader(runTime); printFooter(result); } |