summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java')
-rw-r--r--qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java b/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
index 0b05dbea4fe4..bfffa27d5384 100644
--- a/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
+++ b/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
@@ -147,7 +147,7 @@ public class _XPropertyAccess extends MultiMethodTest {
PropertyValue[] newProps = new PropertyValue[1];
PropertyValue failedProp = new PropertyValue();
failedProp.Name = propertyToChange.Name;
- failedProp.Value = new Integer(10);
+ failedProp.Value = Integer.valueOf(10);
newProps[0] = failedProp;
oObj.setPropertyValues(newProps);
} catch (PropertyVetoException ex) {