Skip to content

Commit

Permalink
cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed May 24, 2024
1 parent b617413 commit 5f7212e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/Plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Plugin extends BasePlugin {
* @param {server.Client} client
*/
async addClient(client) {
this.clients.add(client);
this.#clients.add(client);
}

/**
Expand All @@ -83,7 +83,7 @@ class Plugin extends BasePlugin {
* @param {server.Client} client
*/
async removeClient(client) {
this.clients.delete(client);
this.#clients.delete(client);
}
}

Expand Down

0 comments on commit 5f7212e

Please sign in to comment.