fix: Remove unnecessary async (#202)

This commit is contained in:
Florian Keller 2019-01-28 00:04:01 +01:00 committed by Kyle Spearrin
parent 912aa752f3
commit b55ab576ef
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ export class PowerMonitorMain {
// TODO: System locked
}
private async getLockOption(): Promise<number> {
return await this.main.storageService.get<number>(ConstantsService.lockOptionKey);
private getLockOption(): Promise<number> {
return this.main.storageService.get<number>(ConstantsService.lockOptionKey);
}
}