summaryrefslogtreecommitdiff
path: root/comphelper/qa
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/qa')
-rw-r--r--comphelper/qa/complex/comphelper/Map.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/qa/complex/comphelper/Map.java b/comphelper/qa/complex/comphelper/Map.java
index 6d622a7dfb1e..a615c8f86323 100644
--- a/comphelper/qa/complex/comphelper/Map.java
+++ b/comphelper/qa/complex/comphelper/Map.java
@@ -236,7 +236,7 @@ public class Map /* extends complexlib.ComplexTestCase */
{
case 0: someValue = Boolean.FALSE; break;
case 1: someValue = new Short( (short)0 ); break;
- case 2: someValue = new Integer( 0 ); break;
+ case 2: someValue = Integer.valueOf( 0 ); break;
case 3: someValue = new Long( 0 ); break;
case 4: someValue = UnoRuntime.queryInterface( XInterface.class, new DummyInterface() ); break;
case 5: someValue = UnoRuntime.queryInterface( XSet.class, new DummySet() ); break;