summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_remotebridge/various.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/mod/_remotebridge/various.java')
-rw-r--r--qadevOOo/tests/java/mod/_remotebridge/various.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/mod/_remotebridge/various.java b/qadevOOo/tests/java/mod/_remotebridge/various.java
index 27b1558e6331..b01d3239d91d 100644
--- a/qadevOOo/tests/java/mod/_remotebridge/various.java
+++ b/qadevOOo/tests/java/mod/_remotebridge/various.java
@@ -135,8 +135,7 @@ public class various extends TestCase {
* Creates object which can call <code>accept</code> method
* of the Acceptor object specified.
*/
- public AcceptorThread(XAcceptor acc, XInstanceProvider xInstProv,
- XBridgeFactory xBrdgFctr) {
+ public AcceptorThread(XAcceptor acc) {
this.acc = acc ;
}
@@ -212,7 +211,7 @@ public class various extends TestCase {
// create own implementation of XInstanceProvider
XInstanceProvider xInstProv = new MyInstanceProvider(xMSF);
// create waiting acceptor thread
- accThread = new AcceptorThread(xAcctr, xInstProv, xBrdgFctr);
+ accThread = new AcceptorThread(xAcctr);
accThread.start();
// let the thread sleep
try {