summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/ValueChanger.java
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-12-10 16:01:46 +0000
committerRüdiger Timm <rt@openoffice.org>2004-12-10 16:01:46 +0000
commitd83ee7cfecee171e65cb40081f22e06a5ca01cf8 (patch)
tree19c356f3d88d720d3ae8d5c8dac8109e16c90f9d /qadevOOo/runner/util/ValueChanger.java
parentd390d3e8b5191bdf87a2b3c041cbe30b3c2784f9 (diff)
INTEGRATION: CWS qadev20 (1.3.90); FILE MERGED
2004/11/26 14:22:05 sg 1.3.90.1: #i37178#CHG: removed Java 1.3 incompatibilities
Diffstat (limited to 'qadevOOo/runner/util/ValueChanger.java')
-rw-r--r--qadevOOo/runner/util/ValueChanger.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/util/ValueChanger.java b/qadevOOo/runner/util/ValueChanger.java
index 27c8e4bdf940..e6bbe3344a65 100644
--- a/qadevOOo/runner/util/ValueChanger.java
+++ b/qadevOOo/runner/util/ValueChanger.java
@@ -2,9 +2,9 @@
*
* $RCSfile: ValueChanger.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change:$Date: 2003-11-18 16:17:43 $
+ * last change:$Date: 2004-12-10 17:01:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -95,7 +95,7 @@ public class ValueChanger {
if (oldValue instanceof Boolean) {
boolean oldbool = ((Boolean) oldValue).booleanValue();
- newValue = Boolean.valueOf(!oldbool);
+ newValue = new Boolean(!oldbool);
} else
if (oldValue instanceof Integer) {