summaryrefslogtreecommitdiff
path: root/ridljar/test/com/sun/star/uno/Any_Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'ridljar/test/com/sun/star/uno/Any_Test.java')
-rw-r--r--ridljar/test/com/sun/star/uno/Any_Test.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ridljar/test/com/sun/star/uno/Any_Test.java b/ridljar/test/com/sun/star/uno/Any_Test.java
index 28684d630bfb..9ecde9e5388e 100644
--- a/ridljar/test/com/sun/star/uno/Any_Test.java
+++ b/ridljar/test/com/sun/star/uno/Any_Test.java
@@ -35,7 +35,7 @@ public final class Any_Test {
@Test public void testComplete() {
assertSame(Any.VOID, Any.complete(Any.VOID));
assertEquals(
- new Any(Type.LONG, new Integer(10)), Any.complete(new Integer(10)));
+ new Any(Type.LONG, Integer.valueOf(10)), Any.complete(Integer.valueOf(10)));
assertEquals(
new Any(new Type(XInterface.class), null), Any.complete(null));
XInterface x = new XInterface() {};