diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-12 14:00:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-19 14:57:16 +0200 |
commit | be1bb7b1ccee28be616b89cc95e97d656e78bbe3 (patch) | |
tree | d67d16a68d1469b5096a27c743c4b0326a0c0ebe /comphelper/qa | |
parent | 56ef5533fc1bce2134721ae64d4d6c18a3526a7a (diff) |
java: use Boolean.valueOf instead of instantiating Boolean objects
Change-Id: Ie41d6b0170a035a694dd270c311a137fd1810e74
Diffstat (limited to 'comphelper/qa')
-rw-r--r-- | comphelper/qa/complex/comphelper/Map.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/qa/complex/comphelper/Map.java b/comphelper/qa/complex/comphelper/Map.java index 062179223823..6d622a7dfb1e 100644 --- a/comphelper/qa/complex/comphelper/Map.java +++ b/comphelper/qa/complex/comphelper/Map.java @@ -234,7 +234,7 @@ public class Map /* extends complexlib.ComplexTestCase */ Object someValue = null; switch ( _pos ) { - case 0: someValue = new Boolean( false ); break; + case 0: someValue = Boolean.FALSE; break; case 1: someValue = new Short( (short)0 ); break; case 2: someValue = new Integer( 0 ); break; case 3: someValue = new Long( 0 ); break; |