aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-06-09 10:04:59 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2018-06-09 10:04:59 +1200
commitff1afd37323fa634315841cc84917700f969754b (patch)
tree3476cae2db88e8d50e1e32390da20666b8fc3f68 /src
parent024d9cf87a058cf1e5923943af427cb8487abedb (diff)
downloadtrackermap-server-ff1afd37323fa634315841cc84917700f969754b.tar.gz
trackermap-server-ff1afd37323fa634315841cc84917700f969754b.tar.bz2
trackermap-server-ff1afd37323fa634315841cc84917700f969754b.zip
Small formatting updates
Diffstat (limited to 'src')
-rw-r--r--src/org/traccar/protocol/TeltonikaFrameDecoder.java4
-rw-r--r--src/org/traccar/protocol/TeltonikaProtocolDecoder.java2
-rw-r--r--src/org/traccar/protocol/UlbotechFrameDecoder.java4
3 files changed, 3 insertions, 7 deletions
diff --git a/src/org/traccar/protocol/TeltonikaFrameDecoder.java b/src/org/traccar/protocol/TeltonikaFrameDecoder.java
index ffdf2a3c1..17c6264e0 100644
--- a/src/org/traccar/protocol/TeltonikaFrameDecoder.java
+++ b/src/org/traccar/protocol/TeltonikaFrameDecoder.java
@@ -27,9 +27,7 @@ public class TeltonikaFrameDecoder extends BaseFrameDecoder {
@Override
protected Object decode(
- ChannelHandlerContext ctx,
- Channel channel,
- ByteBuf buf) throws Exception {
+ ChannelHandlerContext ctx, Channel channel, ByteBuf buf) throws Exception {
// Check minimum length
if (buf.readableBytes() < MESSAGE_MINIMUM_LENGTH) {
diff --git a/src/org/traccar/protocol/TeltonikaProtocolDecoder.java b/src/org/traccar/protocol/TeltonikaProtocolDecoder.java
index ac51239db..34afe28ad 100644
--- a/src/org/traccar/protocol/TeltonikaProtocolDecoder.java
+++ b/src/org/traccar/protocol/TeltonikaProtocolDecoder.java
@@ -57,7 +57,7 @@ public class TeltonikaProtocolDecoder extends BaseProtocolDecoder {
DeviceSession deviceSession = getDeviceSession(channel, remoteAddress, imei);
if (channel != null) {
- ByteBuf response = Unpooled.directBuffer(1);
+ ByteBuf response = Unpooled.buffer(1);
if (deviceSession != null) {
response.writeByte(1);
} else {
diff --git a/src/org/traccar/protocol/UlbotechFrameDecoder.java b/src/org/traccar/protocol/UlbotechFrameDecoder.java
index e64791324..963b0e2ab 100644
--- a/src/org/traccar/protocol/UlbotechFrameDecoder.java
+++ b/src/org/traccar/protocol/UlbotechFrameDecoder.java
@@ -26,9 +26,7 @@ public class UlbotechFrameDecoder extends BaseFrameDecoder {
@Override
protected Object decode(
- ChannelHandlerContext ctx,
- Channel channel,
- ByteBuf buf) throws Exception {
+ ChannelHandlerContext ctx, Channel channel, ByteBuf buf) throws Exception {
if (buf.readableBytes() < 2) {
return null;