summaryrefslogtreecommitdiff
path: root/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java
diff options
context:
space:
mode:
Diffstat (limited to 'javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java')
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java b/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java
index 118738c7c1d7..2c808e3e9866 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java
@@ -576,7 +576,7 @@ XMultiPropertySet
* value of the property is to be stored in a member variable of type int with name intProp. Then setPropertyValue is
* called:
* <pre>
- * set.setPropertyValue( "PropA", new Byte( (byte)111));
+ * set.setPropertyValue( "PropA", Byte.valueOf( (byte)111));
* </pre>
* At some point setPropertyValue will call convertPropertyValue and pass in the Byte object. Since we allow
* that Byte values can be used with the property and know that the value is to be stored in intProp (type int)
@@ -735,7 +735,7 @@ XMultiPropertySet
else if (cl.equals(char.class))
retVal= new Character(AnyConverter.toChar(obj));
else if (cl.equals(byte.class))
- retVal= new Byte(AnyConverter.toByte(obj));
+ retVal= Byte.valueOf(AnyConverter.toByte(obj));
else if (cl.equals(short.class))
retVal= Short.valueOf(AnyConverter.toShort(obj));
else if (cl.equals(int.class))
@@ -757,7 +757,7 @@ XMultiPropertySet
else if (cl.equals(Character.class))
retVal= new Character(AnyConverter.toChar(obj));
else if (cl.equals(Byte.class))
- retVal= new Byte(AnyConverter.toByte(obj));
+ retVal= Byte.valueOf(AnyConverter.toByte(obj));
else if (cl.equals(Short.class))
retVal= Short.valueOf(AnyConverter.toShort(obj));
else if (cl.equals(Integer.class))