summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java')
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java b/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java
index a2acc83c62f8..6c851658ea61 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java
+++ b/qadevOOo/tests/java/mod/_streams/uno/ObjectInputStream.java
@@ -242,7 +242,7 @@ public class ObjectInputStream extends TestCase {
data.add(Boolean.TRUE) ;
data.add(new Byte((byte)123)) ;
data.add(new Character((char)1234)) ;
- data.add(new Short((short)1234)) ;
+ data.add(Short.valueOf((short)1234)) ;
data.add(Integer.valueOf(123456)) ;
data.add(new Float(1.234)) ;
data.add(new Double(1.23456)) ;