From 2f67d67cf3264f8647433a298dec7270f4bfb689 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 10 Mar 2014 16:26:07 +0100 Subject: testtools: simplify deprecated XTypeProvider.getImplementationId Change-Id: I2ab505962c64711d72f2a6b4cdebaef2f1bf4439 --- testtools/com/sun/star/comp/bridge/TestComponent.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testtools') 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 -- cgit