diff options
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/com/sun/star/comp/bridge/TestComponent.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testtools/com/sun/star/comp/bridge/TestComponent.java b/testtools/com/sun/star/comp/bridge/TestComponent.java index 0660f930f0fb..0348f7224a2c 100644 --- a/testtools/com/sun/star/comp/bridge/TestComponent.java +++ b/testtools/com/sun/star/comp/bridge/TestComponent.java @@ -1212,7 +1212,7 @@ public class TestComponent { Long.valueOf(Long.MIN_VALUE), new Any(Type.UNSIGNED_HYPER, Long.valueOf(-1L)), Float.valueOf(0.123f), - new Double(0.456), + Double.valueOf(0.456), new Character('X'), "test", Type.ANY, @@ -1269,7 +1269,7 @@ public class TestComponent { new TestPolyStruct(new Character('X')), new TestPolyStruct("test"), new TestPolyStruct(Float.valueOf(0.123f)), - new TestPolyStruct(new Double(0.456)), + new TestPolyStruct(Double.valueOf(0.456)), new TestPolyStruct(new com.sun.star.lib.uno.helper.ComponentBase()), new TestPolyStruct(new com.sun.star.lib.uno.helper.ComponentBase()), new TestPolyStruct(TestEnum.TWO), |