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 db95579f162c..a197c1b65d69 100644
--- a/qadevOOo/runner/util/ValueChanger.java
+++ b/qadevOOo/runner/util/ValueChanger.java
@@ -60,7 +60,7 @@ public class ValueChanger {
if (oldValue instanceof Long) {
long oldlong = ((Long) oldValue).longValue();
- newValue = new Long(oldlong + 15);
+ newValue = Long.valueOf(oldlong + 15);
} else
if (oldValue instanceof Short) {