diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-02 10:04:20 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-06-02 14:09:39 +0000 |
commit | c2d73acad34f43b7c48ef9a4e492ab5b48bb4852 (patch) | |
tree | 0e90d994f298e1b7b19e1173ee2fe565bee4fc2e /dbaccess/qa | |
parent | 1c18deee371ae21088383b2a2ddc55c7a7fd41b7 (diff) |
inline simple Java method
Change-Id: I496fa3223ed97d4d2cf8d64649ce30da22331dbd
Reviewed-on: https://gerrit.libreoffice.org/16039
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dbaccess/qa')
-rw-r--r-- | dbaccess/qa/complex/dbaccess/CopyTableWizard.java | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/dbaccess/qa/complex/dbaccess/CopyTableWizard.java b/dbaccess/qa/complex/dbaccess/CopyTableWizard.java index 03727fe2ed2b..97c63d2de335 100644 --- a/dbaccess/qa/complex/dbaccess/CopyTableWizard.java +++ b/dbaccess/qa/complex/dbaccess/CopyTableWizard.java @@ -167,7 +167,7 @@ public class CopyTableWizard extends CRMBasedTestCase copyWizard.setCreatePrimaryKey(auto); Thread thread = new Thread(new CopyThread(copyWizard)); thread.start(); - sleep(); + util.utils.shortWait(); try { @@ -195,14 +195,9 @@ public class CopyTableWizard extends CRMBasedTestCase catch (com.sun.star.lang.IndexOutOfBoundsException indexOutOfBoundsException) { } - sleep(); + util.utils.shortWait(); thread.join(); } - private void sleep() - { - util.utils.shortWait(); - } - } |