diff options
author | Hans van den Elsen <hans.elsen@esds.nl> | 2016-02-15 07:28:03 +0100 |
---|---|---|
committer | Hans van den Elsen <hans.elsen@esds.nl> | 2016-02-15 07:28:03 +0100 |
commit | 3ced99384b1967f5cde9abdf30c1c0184a5ae3f6 (patch) | |
tree | 14f0543b9a2607be8be7f140a78ac521f8646d7e /src/org/traccar/protocol/MiniFinderProtocol.java | |
parent | 30d886b86bb76dc7e3a13cffb63252d31f0abe2a (diff) | |
download | trackermap-server-3ced99384b1967f5cde9abdf30c1c0184a5ae3f6.tar.gz trackermap-server-3ced99384b1967f5cde9abdf30c1c0184a5ae3f6.tar.bz2 trackermap-server-3ced99384b1967f5cde9abdf30c1c0184a5ae3f6.zip |
Polishing up the custom commands for MiniFinder
Renamed Command.CUSTOM to TYPE_CUSTOM.
Put the raw command in the 'raw' attribute instead as the key for one.
Diffstat (limited to 'src/org/traccar/protocol/MiniFinderProtocol.java')
-rw-r--r-- | src/org/traccar/protocol/MiniFinderProtocol.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/MiniFinderProtocol.java b/src/org/traccar/protocol/MiniFinderProtocol.java index a2dbd6c41..b22539277 100644 --- a/src/org/traccar/protocol/MiniFinderProtocol.java +++ b/src/org/traccar/protocol/MiniFinderProtocol.java @@ -18,7 +18,6 @@ package org.traccar.protocol; import org.jboss.netty.bootstrap.ServerBootstrap; import org.jboss.netty.channel.ChannelPipeline; import org.jboss.netty.handler.codec.string.StringDecoder; -import org.jboss.netty.handler.codec.string.StringEncoder; import org.traccar.BaseProtocol; import org.traccar.CharacterDelimiterFrameDecoder; import org.traccar.TrackerServer; @@ -30,7 +29,7 @@ public class MiniFinderProtocol extends BaseProtocol { public MiniFinderProtocol() { super("minifinder"); - setSupportedCommands(Command.CUSTOM); + setSupportedCommands(Command.TYPE_CUSTOM); } @Override |