summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/query
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-15 14:14:28 +0200
committerNoel Grandin <noel@peralex.com>2014-10-16 08:15:43 +0200
commitecc90694175190cd6e2b9d1bed8f32850d41ce88 (patch)
treed5c9fb3cc3cc52be2e7729ca0e96675c7493fdfd /wizards/com/sun/star/wizards/query
parent95a2f7390753c4edcec70626b6d91c63a7c200ff (diff)
java: use 'Short.valueOf' instead of 'new Short'
Change-Id: I2f0156899b75dd8a3a5600be887b6ac9b6fbdec0
Diffstat (limited to 'wizards/com/sun/star/wizards/query')
-rw-r--r--wizards/com/sun/star/wizards/query/QueryWizard.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/query/QueryWizard.java b/wizards/com/sun/star/wizards/query/QueryWizard.java
index f082d8fc5d3a..e10945825b5c 100644
--- a/wizards/com/sun/star/wizards/query/QueryWizard.java
+++ b/wizards/com/sun/star/wizards/query/QueryWizard.java
@@ -107,7 +107,7 @@ public class QueryWizard extends DatabaseObjectWizard
},
new Object[]
{
- 210, Boolean.TRUE, "DialogQuery", 102, 41, 1, new Short((short) 0), resQueryWizard, 310
+ 210, Boolean.TRUE, "DialogQuery", 102, 41, 1, Short.valueOf((short) 0), resQueryWizard, 310
});
drawNaviBar();
setRightPaneHeaders(m_oResource, UIConsts.RID_QUERY + 70, 8);