mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-05 07:52:03 +00:00
fix: prefix 32 unused parameters with underscore (#22694)
This commit is contained in:
parent
6625766350
commit
d6b14e2467
17 changed files with 30 additions and 30 deletions
|
|
@ -49,9 +49,9 @@ export class SyncServer extends DurableObject<Env> {
|
|||
})
|
||||
}
|
||||
|
||||
async webSocketMessage(ws, message) {}
|
||||
async webSocketMessage(_ws, _message) {}
|
||||
|
||||
async webSocketClose(ws, code, reason, wasClean) {
|
||||
async webSocketClose(ws, code, _reason, _wasClean) {
|
||||
ws.close(code, "Durable Object is closing WebSocket")
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue