diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-06-06 16:52:43 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-06 16:52:43 +1200 |
commit | eb6475d5087345b7f355fcd55362b955ba5df715 (patch) | |
tree | 776cdee29f623909f0431f4409ab9222e7b2b6ca /src/org/traccar/protocol/WondexProtocolDecoder.java | |
parent | 562535fd538e7b05b6fe96c0f56eb2ec0ae1fd0e (diff) | |
parent | 2c15d1afc307208dd96c63a1ef0a4ed12f4fd9fe (diff) | |
download | trackermap-server-eb6475d5087345b7f355fcd55362b955ba5df715.tar.gz trackermap-server-eb6475d5087345b7f355fcd55362b955ba5df715.tar.bz2 trackermap-server-eb6475d5087345b7f355fcd55362b955ba5df715.zip |
Merge pull request #3911 from Abyss777/netty4_wialon_wondex
Migrate Wialon and Wondex
Diffstat (limited to 'src/org/traccar/protocol/WondexProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/WondexProtocolDecoder.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/org/traccar/protocol/WondexProtocolDecoder.java b/src/org/traccar/protocol/WondexProtocolDecoder.java index a0fa436e4..7845cb26a 100644 --- a/src/org/traccar/protocol/WondexProtocolDecoder.java +++ b/src/org/traccar/protocol/WondexProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2013 - 2015 Anton Tananaev (anton@traccar.org) + * Copyright 2013 - 2018 Anton Tananaev (anton@traccar.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,8 +15,8 @@ */ package org.traccar.protocol; -import org.jboss.netty.buffer.ChannelBuffer; -import org.jboss.netty.channel.Channel; +import io.netty.buffer.ByteBuf; +import io.netty.channel.Channel; import org.traccar.BaseProtocolDecoder; import org.traccar.DeviceSession; import org.traccar.helper.Parser; @@ -60,7 +60,7 @@ public class WondexProtocolDecoder extends BaseProtocolDecoder { protected Object decode( Channel channel, SocketAddress remoteAddress, Object msg) throws Exception { - ChannelBuffer buf = (ChannelBuffer) msg; + ByteBuf buf = (ByteBuf) msg; if (buf.getUnsignedByte(0) == 0xD0) { |