diff options
-rw-r--r-- | qadevOOo/runner/org/openoffice/Runner.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qadevOOo/runner/org/openoffice/Runner.java b/qadevOOo/runner/org/openoffice/Runner.java index 5513c0bb17cf..fe3f1b0ec630 100644 --- a/qadevOOo/runner/org/openoffice/Runner.java +++ b/qadevOOo/runner/org/openoffice/Runner.java @@ -43,10 +43,10 @@ public class Runner { return m_nStartTime; } - /* - simple helper functions to start/stop a timer, to know how long a process need in milliseconds - */ + /** + * simple helper functions to start/stop a timer, to know how long a process need in milliseconds + */ private static long getTime() { return System.currentTimeMillis(); @@ -57,8 +57,8 @@ public class Runner m_nStartTime = _nStartTime; } - /* - return the time, which is done until last startTime() + /** + * @return the time, which is done until last startTime() */ private static long meanTime(long _nCurrentTimer) { @@ -86,7 +86,7 @@ public class Runner } /** - Helper to check if there are problems with Cygwin Path variables. + * Helper to check if there are problems with Cygwin Path variables. */ private static boolean checkVariableForCygwin(String _sVariable) { |