diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 16:26:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 17:39:59 +0100 |
commit | 2f67d67cf3264f8647433a298dec7270f4bfb689 (patch) | |
tree | af3dbcb50b7f189a328503c5fdbb7db61a190425 /testtools | |
parent | bc75f70b6ab5d8c6e8182305e6388a29cb82b67f (diff) |
testtools: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I2ab505962c64711d72f2a6b4cdebaef2f1bf4439
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/com/sun/star/comp/bridge/TestComponent.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testtools/com/sun/star/comp/bridge/TestComponent.java b/testtools/com/sun/star/comp/bridge/TestComponent.java index 211333c785e7..bfc41cfaad76 100644 --- a/testtools/com/sun/star/comp/bridge/TestComponent.java +++ b/testtools/com/sun/star/comp/bridge/TestComponent.java @@ -290,7 +290,7 @@ public class TestComponent { } public byte[] getImplementationId() throws com.sun.star.uno.RuntimeException { - return toString().getBytes(); + return new byte[0]; } } @@ -970,7 +970,7 @@ public class TestComponent { } public byte[] getImplementationId() throws com.sun.star.uno.RuntimeException { - return toString().getBytes(); + return new byte[0]; } //XBridgeTest2 |