diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-06-09 11:53:11 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-06-09 11:53:11 +1200 |
commit | c40928cd674144fa5ed3dc7306c33b16823b2fad (patch) | |
tree | 1180e335ca1ad10c4cb40033c7acf2b62dfbc8d1 /src/org/traccar/protocol/AdmProtocolDecoder.java | |
parent | 44cdc3449fccd22b21fec1c9a0febea807cc2489 (diff) | |
download | trackermap-server-c40928cd674144fa5ed3dc7306c33b16823b2fad.tar.gz trackermap-server-c40928cd674144fa5ed3dc7306c33b16823b2fad.tar.bz2 trackermap-server-c40928cd674144fa5ed3dc7306c33b16823b2fad.zip |
Use slices instead of new buffers
Diffstat (limited to 'src/org/traccar/protocol/AdmProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/AdmProtocolDecoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/AdmProtocolDecoder.java b/src/org/traccar/protocol/AdmProtocolDecoder.java index 04a607749..4c41d29cd 100644 --- a/src/org/traccar/protocol/AdmProtocolDecoder.java +++ b/src/org/traccar/protocol/AdmProtocolDecoder.java @@ -132,7 +132,7 @@ public class AdmProtocolDecoder extends BaseProtocolDecoder { if (responseTextLength < 0) { responseTextLength = CMD_RESPONSE_SIZE - 3; } - position.set(Position.KEY_RESULT, buf.readBytes(responseTextLength).toString(StandardCharsets.UTF_8)); + position.set(Position.KEY_RESULT, buf.readSlice(responseTextLength).toString(StandardCharsets.UTF_8)); return position; } @@ -147,7 +147,7 @@ public class AdmProtocolDecoder extends BaseProtocolDecoder { if (size != CMD_RESPONSE_SIZE) { int type = buf.readUnsignedByte(); if (type == MSG_IMEI) { - getDeviceSession(channel, remoteAddress, buf.readBytes(15).toString(StandardCharsets.UTF_8)); + getDeviceSession(channel, remoteAddress, buf.readSlice(15).toString(StandardCharsets.UTF_8)); } else { return decodeData(channel, remoteAddress, buf, type); } |