summaryrefslogtreecommitdiff
path: root/qadevOOo/runner
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-08-06 00:12:34 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-08-06 00:13:27 +0200
commitb80b7ba1791cdd9e79ed7a380b8981878f46b8a4 (patch)
tree0c9e3df7abbaf4a547af03442663a2c978ebde21 /qadevOOo/runner
parentc04c2114d9159646dddd4807d026c9fee6953817 (diff)
Static method sleep from Thread should be accessed in a static way
Change-Id: I7d875dd74f8eff05f7a291100841779abbf5fd1c
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r--qadevOOo/runner/util/utils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/runner/util/utils.java b/qadevOOo/runner/util/utils.java
index 8e9f4fa7a2f4..08acdc3800ff 100644
--- a/qadevOOo/runner/util/utils.java
+++ b/qadevOOo/runner/util/utils.java
@@ -752,7 +752,7 @@ public class utils {
*/
public static void shortWait(int milliseconds) {
try {
- Thread.currentThread().sleep(milliseconds);
+ Thread.sleep(milliseconds);
} catch (InterruptedException e) {
System.out.println("While waiting :" + e);
}