diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 15:33:43 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-10 17:39:57 +0100 |
commit | 9d7ee8a70f52be53be1f36dccf9856d93c0c93f8 (patch) | |
tree | deb116a77d02f1c74607e122fee58fac7d36cfc2 /qadevOOo | |
parent | d89928441ddb6ee5a32d1ee083adc81f19a84f46 (diff) |
qadevOOo: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I1efcc27818c8ec92db32151afc8f17bbf7fc1f40
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/testdocs/qadevlibs/source/test/Job.java | 2 | ||||
-rw-r--r-- | qadevOOo/tests/java/mod/_fwk/JobExecutor.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/testdocs/qadevlibs/source/test/Job.java b/qadevOOo/testdocs/qadevlibs/source/test/Job.java index 53f7c30047e1..01a5b717846a 100644 --- a/qadevOOo/testdocs/qadevlibs/source/test/Job.java +++ b/qadevOOo/testdocs/qadevlibs/source/test/Job.java @@ -72,7 +72,7 @@ public class Job { } public byte[] getImplementationId() { - return toString().getBytes(); + return new byte[0]; } public Type[] getTypes() { diff --git a/qadevOOo/tests/java/mod/_fwk/JobExecutor.java b/qadevOOo/tests/java/mod/_fwk/JobExecutor.java index 64406c204b25..9d8467fa98a3 100644 --- a/qadevOOo/tests/java/mod/_fwk/JobExecutor.java +++ b/qadevOOo/tests/java/mod/_fwk/JobExecutor.java @@ -236,7 +236,7 @@ class Job implements int callCount = 0; public byte[] getImplementationId() { - return toString().getBytes(); + return new byte[0]; } public Type[] getTypes() { |