aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/WatchProtocolEncoder.java
diff options
context:
space:
mode:
authorGavriel Fleischer <flocsy@gmail.com>2019-02-17 03:38:36 +0200
committerGavriel Fleischer <flocsy@gmail.com>2019-02-17 03:50:03 +0200
commit5fe7762b7f17d8d19e86ffb20a3adfc09d700f1a (patch)
treee9ab98a1782118ae03cfa0d980a2109d1e040c91 /src/org/traccar/protocol/WatchProtocolEncoder.java
parent2a0dff15ead0c5d0cf5865acf500b8ebebe2c8e2 (diff)
downloadtraccar-server-5fe7762b7f17d8d19e86ffb20a3adfc09d700f1a.tar.gz
traccar-server-5fe7762b7f17d8d19e86ffb20a3adfc09d700f1a.tar.bz2
traccar-server-5fe7762b7f17d8d19e86ffb20a3adfc09d700f1a.zip
removed StringEncoder
Diffstat (limited to 'src/org/traccar/protocol/WatchProtocolEncoder.java')
-rw-r--r--src/org/traccar/protocol/WatchProtocolEncoder.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/WatchProtocolEncoder.java b/src/org/traccar/protocol/WatchProtocolEncoder.java
index 8048d30ff..df29d83a9 100644
--- a/src/org/traccar/protocol/WatchProtocolEncoder.java
+++ b/src/org/traccar/protocol/WatchProtocolEncoder.java
@@ -47,11 +47,11 @@ public class WatchProtocolEncoder extends StringProtocolEncoder implements Strin
return null;
}
- protected String formatTextCommand(Channel channel, Command command, String format, String... keys) {
+ protected ByteBuf formatTextCommand(Channel channel, Command command, String format, String... keys) {
String content = formatCommand(command, format, this, keys);
ByteBuf buf = Unpooled.copiedBuffer(content, StandardCharsets.US_ASCII);
- return formatBinaryCommand(channel, command, "", buf).toString(StandardCharsets.US_ASCII);
+ return formatBinaryCommand(channel, command, "", buf);
}
protected ByteBuf formatBinaryCommand(Channel channel, Command command, String textPrefix, ByteBuf data) {