diff options
Diffstat (limited to 'qadevOOo/runner/util')
-rw-r--r-- | qadevOOo/runner/util/PropertyName.java | 4 | ||||
-rw-r--r-- | qadevOOo/runner/util/utils.java | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/qadevOOo/runner/util/PropertyName.java b/qadevOOo/runner/util/PropertyName.java index 27e29b12f651..51d52a873750 100644 --- a/qadevOOo/runner/util/PropertyName.java +++ b/qadevOOo/runner/util/PropertyName.java @@ -63,10 +63,6 @@ public interface PropertyName { */ String OUT_PRODUCER = "OutProducer"; /** - * Default short wait time for the Office - */ - int DEFAULT_SHORT_WAIT_MS = 500; - /** * internal only, no parameter * The OfficeProvider contains the full qualified * class that provides a connection to StarOffice<br> diff --git a/qadevOOo/runner/util/utils.java b/qadevOOo/runner/util/utils.java index 4557cb5484e5..4a77e41e2331 100644 --- a/qadevOOo/runner/util/utils.java +++ b/qadevOOo/runner/util/utils.java @@ -648,7 +648,7 @@ public class utils { * This is the default call, which waits for 500ms. */ public static void shortWait() { - pause(PropertyName.DEFAULT_SHORT_WAIT_MS); + pause(utils.DEFAULT_SHORT_WAIT_MS); } /** Causes the thread to sleep some time. @@ -857,4 +857,9 @@ public class utils { dfmt.format(cal.get(Calendar.MILLISECOND)); return "[" + dateTime + "]"; } + + /** + * Default short wait time for the Office + */ + public static final int DEFAULT_SHORT_WAIT_MS = 500; } |