Skip to content
Snippets Groups Projects
Commit d25c8864 authored by jojohoch's avatar jojohoch
Browse files

[player] Remove unnecessary if clause in IdService

parent 1cf7d043
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,7 @@ export class IdService { // TODO rename: capitalize
private static instance: IdService;
constructor() {
if (!IdService.instance) {
IdService.instance = this;
}
IdService.instance = this;
}
static getInstance(): IdService {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment