Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public class TcpEventBusBridgeImpl implements TcpEventBusBridge {
private final BridgeOptions options;
private final Handler<BridgeEvent> bridgeEventHandler;


public TcpEventBusBridgeImpl(Vertx vertx, BridgeOptions options, NetServerOptions netServerOptions, Handler<BridgeEvent> eventHandler) {
this.eb = vertx.eventBus();
this.options = options != null ? options : new BridgeOptions();
Expand Down Expand Up @@ -127,7 +126,6 @@ private void doSendOrPub(NetSocket socket, String address, JsonObject msg, Map<S
final Object body = msg.getValue("body");
final JsonObject headers = msg.getJsonObject("headers");


// default to message
final String type = msg.getString("type", "message");
DeliveryOptions deliveryOptions = parseMsgHeaders(new DeliveryOptions(), headers);
Expand Down