[core] Remove a bunch of superflous semicolons (#9449)

This commit is contained in:
zwim
2022-09-08 21:52:06 +02:00
committed by GitHub
parent 96930f230f
commit d972b7fcfa
10 changed files with 17 additions and 18 deletions

View File

@@ -13,7 +13,7 @@ local StreamMessageQueue = MessageQueue:new{
}
function StreamMessageQueue:start()
self.context = czmq.zctx_new();
self.context = czmq.zctx_new()
self.socket = czmq.zsocket_new(self.context, C.ZMQ_STREAM)
self.poller = czmq.zpoller_new(self.socket, nil)
local endpoint = string.format("tcp://%s:%d", self.host, self.port)