mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Remove unnecessary assignment (dependency injection handles this)
This commit is contained in:
parent
f810df0d9d
commit
de77cfccff
@ -9,9 +9,7 @@ import { WebSocketService } from './websocket.service';
|
|||||||
export class AppComponent implements OnInit {
|
export class AppComponent implements OnInit {
|
||||||
title = 'app';
|
title = 'app';
|
||||||
|
|
||||||
constructor(private webSocketService: WebSocketService) {
|
constructor(private webSocketService: WebSocketService) {}
|
||||||
this.webSocketService = webSocketService;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.webSocketService.connect();
|
this.webSocketService.connect();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user