[MIGRATION] - Fixed lint errors for empty function

This commit is contained in:
VitoAlbano
2024-08-05 23:06:04 +01:00
parent cf175c67b8
commit 1c339a926b
867 changed files with 2147 additions and 2153 deletions

View File

@@ -25,7 +25,7 @@ export class CheckEnv {
_alfrescoJsApi: AlfrescoApi;
counter = 0;
constructor(private host: string, private username: string, private password: string, private clientId: string = 'alfresco') {}
constructor(private host: string, private username: string, private password: string, private clientId: string = 'alfresco') { /* empty */ }
async checkEnv() {
try {
@@ -71,6 +71,6 @@ export class CheckEnv {
sleep(delay: number) {
const start = new Date().getTime();
while (new Date().getTime() < start + delay) {}
while (new Date().getTime() < start + delay) { /* empty */ }
}
}