diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-03-29 10:52:49 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-03-29 10:52:49 +0000 |
commit | a8b087a6be3bbe3f3f78d2c2d7582376dbab4b83 (patch) | |
tree | 19cd2d7b1dd48aee4118c25a91b8917dce065229 /qadevOOo/runner/complexlib | |
parent | 230dea5ba6b892703eaed1d8fb8c88018e8842c6 (diff) |
INTEGRATION: CWS qadev22 (1.3.100); FILE MERGED
2005/03/10 16:22:03 sw 1.3.100.1: i44711
Diffstat (limited to 'qadevOOo/runner/complexlib')
-rw-r--r-- | qadevOOo/runner/complexlib/MethodThread.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/runner/complexlib/MethodThread.java b/qadevOOo/runner/complexlib/MethodThread.java index 229ab6bb0df0..4b6ca79962fa 100644 --- a/qadevOOo/runner/complexlib/MethodThread.java +++ b/qadevOOo/runner/complexlib/MethodThread.java @@ -38,7 +38,7 @@ public class MethodThread extends Thread { */ public void run() { try { - mTestMethod.invoke(mInvokeClass, null); + mTestMethod.invoke(mInvokeClass, new Object[]{}); } catch(IllegalAccessException e) { e.printStackTrace(mLog); |