Skip to content

Commit 7ea21c0

Browse files
committed
refactor: remove serialhub parameter from newHub function and instantiate newSerialHub within it
1 parent 4dba1a8 commit 7ea21c0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

hub.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ type hub struct {
5858
systray *systray.Systray
5959
}
6060

61-
func newHub(serialhub *serialhub, serialList *serialPortList, tools *tools.Tools, systray *systray.Systray) *hub {
61+
func newHub(serialList *serialPortList, tools *tools.Tools, systray *systray.Systray) *hub {
6262
hub := &hub{
6363
broadcast: make(chan []byte, 1000),
6464
broadcastSys: make(chan []byte, 1000),
6565
register: make(chan *connection),
6666
unregister: make(chan *connection),
6767
connections: make(map[*connection]bool),
68-
serialHub: serialhub,
68+
serialHub: newSerialHub(),
6969
serialPortList: serialList,
7070
tools: tools,
7171
systray: systray,

main.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,8 @@ func loop(stray *systray.Systray) {
177177
tools := tools.New(config.GetDataDir(), index, signaturePubKey)
178178

179179
serialPorts := newSerialPortList(tools)
180-
serialHub := newSerialHub()
181180

182-
hub := newHub(serialHub, serialPorts, tools, stray)
181+
hub := newHub(serialPorts, tools, stray)
183182

184183
// Let's handle the config
185184
configDir := config.GetDefaultConfigDir()

0 commit comments

Comments
 (0)