Kaydet (Commit) 9d7ee8a7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

qadevOOo: simplify deprecated XTypeProvider.getImplementationId

Change-Id: I1efcc27818c8ec92db32151afc8f17bbf7fc1f40
üst d8992844
...@@ -72,7 +72,7 @@ public class Job { ...@@ -72,7 +72,7 @@ public class Job {
} }
public byte[] getImplementationId() { public byte[] getImplementationId() {
return toString().getBytes(); return new byte[0];
} }
public Type[] getTypes() { public Type[] getTypes() {
......
...@@ -236,7 +236,7 @@ class Job implements ...@@ -236,7 +236,7 @@ class Job implements
int callCount = 0; int callCount = 0;
public byte[] getImplementationId() { public byte[] getImplementationId() {
return toString().getBytes(); return new byte[0];
} }
public Type[] getTypes() { public Type[] getTypes() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment