summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/RegistryTools.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util/RegistryTools.java')
-rw-r--r--qadevOOo/runner/util/RegistryTools.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/runner/util/RegistryTools.java b/qadevOOo/runner/util/RegistryTools.java
index 65eacf4dad94..72ef5e74370d 100644
--- a/qadevOOo/runner/util/RegistryTools.java
+++ b/qadevOOo/runner/util/RegistryTools.java
@@ -321,7 +321,7 @@ public class RegistryTools {
out.print("[BINARY] = {") ;
byte[] bin = key.getBinaryValue() ;
for (int i = 0; i < bin.length; i++)
- out.print("" + bin[i] + ",") ;
+ out.print(bin[i] + ",") ;
out.println("}") ;
} else
if (type.equals(RegistryValueType.ASCIILIST)) {
@@ -342,7 +342,7 @@ public class RegistryTools {
out.print("[LONGLIST] = {") ;
int[] list = key.getLongListValue() ;
for (int i = 0; i < list.length; i++)
- out.print("" + list[i] + ",") ;
+ out.print(list[i] + ",") ;
out.println("}") ;
} else {
out.println("") ;