diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-26 13:29:37 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-26 13:29:37 +1300 |
commit | 09b4183fd7ba546209d422d53ea07e273bec26f3 (patch) | |
tree | 529c916e244d634870b0d2f01c51efce0e032889 /src/org/traccar/protocol/AutoFon45ProtocolDecoder.java | |
parent | 3e56ea6a99e7da5d61c5956876c2d977268e4756 (diff) | |
download | trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.tar.gz trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.tar.bz2 trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.zip |
Use hexDump instead of readHexString
Diffstat (limited to 'src/org/traccar/protocol/AutoFon45ProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/AutoFon45ProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/AutoFon45ProtocolDecoder.java b/src/org/traccar/protocol/AutoFon45ProtocolDecoder.java index c09aecf95..fbc680858 100644 --- a/src/org/traccar/protocol/AutoFon45ProtocolDecoder.java +++ b/src/org/traccar/protocol/AutoFon45ProtocolDecoder.java @@ -63,7 +63,7 @@ public class AutoFon45ProtocolDecoder extends BaseProtocolDecoder { byte[] bytes = new byte[19]; buf.readBytes(bytes); - String imei = ChannelBufferTools.readHexString(ChannelBuffers.wrappedBuffer(bytes, 1, 16), 16).substring(1); + String imei = ChannelBuffers.hexDump(ChannelBuffers.wrappedBuffer(bytes, 1, 16)).substring(1); if (!identify(imei, channel)) { return null; } |