diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 15:00:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 17:39:56 +0100 |
commit | 7078dbb906fa2b5be38781a4141aba5fe279b3ad (patch) | |
tree | 67e98de157fcf2b0a8262999983ec2de9808a785 /jurt/test | |
parent | 90b27c9493f4225e1612364b5813971b45b681a6 (diff) |
jurt: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I6fc237a3274f51b282804b9a08fc063694376780
Diffstat (limited to 'jurt/test')
-rw-r--r-- | jurt/test/com/sun/star/uno/AnyConverter_Test.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jurt/test/com/sun/star/uno/AnyConverter_Test.java b/jurt/test/com/sun/star/uno/AnyConverter_Test.java index 26492f12de06..b9eee47ccc8f 100644 --- a/jurt/test/com/sun/star/uno/AnyConverter_Test.java +++ b/jurt/test/com/sun/star/uno/AnyConverter_Test.java @@ -874,7 +874,7 @@ class ATypeProvider implements com.sun.star.lang.XTypeProvider public byte[] getImplementationId() { - return new byte[]{1,2,3}; + return new byte[0]; } public com.sun.star.uno.Type[] getTypes() |