From 622706ec1c8e2a78dae161a1db64b09247efbfd9 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 26 Oct 2015 14:32:15 +1300 Subject: Remove readHexString util method --- src/org/traccar/helper/ChannelBufferTools.java | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'src/org/traccar/helper') diff --git a/src/org/traccar/helper/ChannelBufferTools.java b/src/org/traccar/helper/ChannelBufferTools.java index 6c61287c9..db628a76b 100644 --- a/src/org/traccar/helper/ChannelBufferTools.java +++ b/src/org/traccar/helper/ChannelBufferTools.java @@ -49,26 +49,6 @@ public final class ChannelBufferTools { return result; } - /** - * Return hex string - */ - public static String readHexString(ChannelBuffer buf, int length) { - - StringBuilder result = new StringBuilder(); - Formatter formatter = new Formatter(result); - - for (int i = 0; i < length / 2; i++) { - formatter.format("%02x", buf.readByte()); - } - - if (length % 2 != 0) { - int b = buf.getUnsignedByte(buf.readerIndex()); - formatter.format("%01x", b >>> 4); - } - - return result.toString(); - } - /** * Read BCD coded coordinate (first byte has sign bit) */ -- cgit v1.2.3