summaryrefslogtreecommitdiff
path: root/jvmaccess
diff options
context:
space:
mode:
Diffstat (limited to 'jvmaccess')
-rw-r--r--jvmaccess/workbench/java/TestComponent.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/jvmaccess/workbench/java/TestComponent.java b/jvmaccess/workbench/java/TestComponent.java
index f12dc29596d7..8e692a73b3f2 100644
--- a/jvmaccess/workbench/java/TestComponent.java
+++ b/jvmaccess/workbench/java/TestComponent.java
@@ -46,13 +46,7 @@ public final class TestComponent implements XTypeProvider, XServiceInfo, XMain {
}
public byte[] getImplementationId() {
- byte[] id = new byte[16];
- int n = hashCode();
- id[0] = (byte) (n & 0xFF);
- id[1] = (byte) ((n >> 8) & 0xFF);
- id[2] = (byte) ((n >> 16) & 0xFF);
- id[3] = (byte) ((n >> 24) & 0xFF);
- return id;
+ return new byte[0];
}
public String getImplementationName() {