Rename WebSocketService sendJSON() -> send()

This commit is contained in:
Kristóf Tóth
2019-08-15 21:24:54 +02:00
parent 614019fbff
commit 24c994c41e
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export class WebSocketService {
);
}
public sendJSON(json: any) {
public send(json: any) {
this.ws.next(json);
}
}