refactor: remove unused NewKeypressKeepAliveMessage function from HID RPC

This commit is contained in:
Adam Shiervani 2025-09-16 13:09:32 +02:00 committed by Siyuan Miao
parent 6b03af6583
commit 2eae80ef1d
1 changed files with 0 additions and 8 deletions

View File

@ -121,11 +121,3 @@ func NewKeyboardMacroStateMessage(state bool, isPaste bool) *Message {
d: data,
}
}
// NewKeypressKeepAliveMessage creates a new keypress keep alive message.
func NewKeypressKeepAliveMessage() *Message {
return &Message{
t: TypeKeypressKeepAliveReport,
d: []byte{},
}
}