Skip to content

Commit 14d72e8

Browse files
committed
refactor: clarify the impact of removing serialPorts.List() in writerNoBuf
1 parent 283064c commit 14d72e8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

serialport.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,9 @@ func (p *serport) writerNoBuf() {
241241

242242
p.portIo.Close()
243243

244-
// The effect of this call is to send in to all the we client the list of serial ports
245-
// TODO: investigate if this is superfluous and it can be removed.
244+
// NOTE: by removing the 'serialPorts.List()' line, the list of serial ports are NOT sent to the websocket clients.
245+
// after a write is completed. It should not be an issue also because the other two 'writerBuffered' and 'writerRaw' methods
246+
// do not call it.
246247
// serialPorts.List()
247248

248249
}

0 commit comments

Comments
 (0)