summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/document/_Settings.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/document/_Settings.java')
-rw-r--r--qadevOOo/tests/java/ifc/document/_Settings.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/tests/java/ifc/document/_Settings.java b/qadevOOo/tests/java/ifc/document/_Settings.java
index c1f5e3ec0cd0..01e7be08f35e 100644
--- a/qadevOOo/tests/java/ifc/document/_Settings.java
+++ b/qadevOOo/tests/java/ifc/document/_Settings.java
@@ -40,7 +40,7 @@ public class _Settings extends MultiPropertyTest {
public void _PrinterIndependentLayout() {
try{
Short oldVal = (Short) oObj.getPropertyValue("PrinterIndependentLayout");
- Short newVal = oldVal.intValue() == 1 ? new Short("3") : new Short("1");
+ Short newVal = oldVal.intValue() == 1 ? Short.valueOf("3") : Short.valueOf("1");
testProperty("PrinterIndependentLayout", oldVal, newVal);