From 2260e9543dc586300b005c97ca83b2902c414968 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 7 Oct 2015 14:19:28 +1300 Subject: Replace valueOf with parseXxx calls --- test/org/traccar/helper/ChannelBufferToolsTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/org/traccar/helper') diff --git a/test/org/traccar/helper/ChannelBufferToolsTest.java b/test/org/traccar/helper/ChannelBufferToolsTest.java index fb99a9038..2d1c1f0ca 100644 --- a/test/org/traccar/helper/ChannelBufferToolsTest.java +++ b/test/org/traccar/helper/ChannelBufferToolsTest.java @@ -11,7 +11,7 @@ public class ChannelBufferToolsTest { @Test public void testReadHexInteger() { - byte[] buf = {0x01,(byte)0x90,0x34}; + byte[] buf = {0x01, (byte) 0x90, 0x34}; int result = ChannelBufferTools.readHexInteger( factory.getBuffer(buf, 0, buf.length), 5); assertEquals(1903, result); @@ -19,23 +19,23 @@ public class ChannelBufferToolsTest { @Test public void testReadHexString() { - byte[] buf = {0x01,(byte)0x90,0x34}; + byte[] buf = {0x01, (byte) 0x90, 0x34}; String result = ChannelBufferTools.readHexString( factory.getBuffer(buf, 0, buf.length), 5); assertEquals("01903", result); - result = Long.valueOf(result).toString(); + result = String.valueOf(Long.parseLong(result)); assertEquals("1903", result); } @Test public void convertHexStringTest() { - assertArrayEquals(new byte[] {0x12,0x34}, ChannelBufferTools.convertHexString("1234")); + assertArrayEquals(new byte[] {0x12, 0x34}, ChannelBufferTools.convertHexString("1234")); } @Test public void convertHexByteArray() { - assertEquals("1234", ChannelBufferTools.convertByteArray(new byte[] {0x12,0x34})); + assertEquals("1234", ChannelBufferTools.convertByteArray(new byte[] {0x12, 0x34})); } } -- cgit v1.2.3