summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-12 15:13:30 +0200
committerNoel Grandin <noel@peralex.com>2014-08-19 14:57:18 +0200
commitc552aac9f889b094caaa35c3fd9d12fe7c3fc73c (patch)
treeb6b583a6fe44817d37d3b9963ed973b67d16ed4f /qadevOOo/tests/java/ifc
parent0764292c5dcb7daa62e9adeb1ac9af1dbe14066f (diff)
java: use 'Byte.valueOf' instead of 'new Byte'
Change-Id: Ia99765a6226317ee41ffb02a1b0dd7e6fd944a90
Diffstat (limited to 'qadevOOo/tests/java/ifc')
-rw-r--r--qadevOOo/tests/java/ifc/style/_CharacterProperties.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/ifc/style/_CharacterProperties.java b/qadevOOo/tests/java/ifc/style/_CharacterProperties.java
index 7a53627de3e4..27270b74c631 100644
--- a/qadevOOo/tests/java/ifc/style/_CharacterProperties.java
+++ b/qadevOOo/tests/java/ifc/style/_CharacterProperties.java
@@ -313,8 +313,8 @@ public class _CharacterProperties extends MultiPropertyTest {
* so ist must be treated special
*/
public void _CharEscapementHeight() {
- Byte aByte = new Byte((byte)75);
- Byte max = new Byte((byte)100);
+ Byte aByte = Byte.valueOf((byte)75);
+ Byte max = Byte.valueOf((byte)100);
testProperty("CharEscapementHeight", aByte, max) ;
}