summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/style/_ParagraphProperties.java')
-rw-r--r--qadevOOo/tests/java/ifc/style/_ParagraphProperties.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java b/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
index 335d8968e6bf..33caa19966f3 100644
--- a/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
+++ b/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
@@ -188,10 +188,10 @@ public class _ParagraphProperties extends MultiPropertyTest {
@Override
protected Object getNewValue(String propName, Object oldValue) {
if ((oldValue != null) &&
- (oldValue.equals(new Boolean(false)))) {
- return new Boolean(true);
+ (oldValue.equals(Boolean.FALSE))) {
+ return Boolean.TRUE;
} else {
- return new Boolean(false);
+ return Boolean.FALSE;
}
}
};