summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/org/openoffice/Runner.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/org/openoffice/Runner.java')
-rw-r--r--qadevOOo/runner/org/openoffice/Runner.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/qadevOOo/runner/org/openoffice/Runner.java b/qadevOOo/runner/org/openoffice/Runner.java
index c1c78503194b..33071aa4e7b4 100644
--- a/qadevOOo/runner/org/openoffice/Runner.java
+++ b/qadevOOo/runner/org/openoffice/Runner.java
@@ -37,20 +37,6 @@ import base.TestBase;
public class Runner
{
- /**
- * @return the time, which is done until last startTime()
- */
- private static long meanTime(long _nCurrentTimer)
- {
- if (_nCurrentTimer == 0)
- {
- System.out.println("Forgotten to initialise a start timer?");
- return 0;
- }
- long nMeanTime = System.currentTimeMillis();
- return nMeanTime - _nCurrentTimer;
- }
-
private static String beautifyTime(long _nTime)
{
long sec = (_nTime / 1000) % 60;