diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 15:59:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 17:39:58 +0100 |
commit | 5bce6e34cd94ba3dd6e5fd2c96226ed62a3fea76 (patch) | |
tree | d08423e5d4902c72eb23635758c52352691b2f42 /stoc/test/javavm | |
parent | af277041412ee8dcfa6a02a147efd89ae843d61b (diff) |
stoc: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I57eca2dcf316232c26c528015c4ba18ba3c4760d
Diffstat (limited to 'stoc/test/javavm')
-rw-r--r-- | stoc/test/javavm/testcomponent/TestComponent.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/test/javavm/testcomponent/TestComponent.java b/stoc/test/javavm/testcomponent/TestComponent.java index eb1e4206880a..33cb4e25fb37 100644 --- a/stoc/test/javavm/testcomponent/TestComponent.java +++ b/stoc/test/javavm/testcomponent/TestComponent.java @@ -56,7 +56,7 @@ public class TestComponent implements XServiceInfo, XTypeProvider // XTypeProvider public byte[] getImplementationId( ) { - return TestComponent.class.getName().getBytes(); + return new byte[0]; } |