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 33caa19966f3..27f5788caf51 100644
--- a/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
+++ b/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
@@ -171,10 +171,10 @@ public class _ParagraphProperties extends MultiPropertyTest {
@Override
protected Object getNewValue(String propName, Object oldValue) {
if ((oldValue != null) &&
- (oldValue.equals(new Short((short) 0)))) {
- return new Short((short) 2);
+ (oldValue.equals(Short.valueOf((short) 0)))) {
+ return Short.valueOf((short) 2);
} else {
- return new Short((short) 0);
+ return Short.valueOf((short) 0);
}
}
};