summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/ValueChanger.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util/ValueChanger.java')
-rw-r--r--qadevOOo/runner/util/ValueChanger.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/runner/util/ValueChanger.java b/qadevOOo/runner/util/ValueChanger.java
index a197c1b65d69..f4b57aa771a1 100644
--- a/qadevOOo/runner/util/ValueChanger.java
+++ b/qadevOOo/runner/util/ValueChanger.java
@@ -65,7 +65,7 @@ public class ValueChanger {
if (oldValue instanceof Short) {
short oldshort = ((Short) oldValue).shortValue();
- newValue = new Short((short) (oldshort + 1));
+ newValue = Short.valueOf((short) (oldshort + 1));
} else
if (oldValue instanceof Byte) {