Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Commit 7bd6704

Browse files
committed
Fix tslint warnings.
1 parent cb54bc9 commit 7bd6704

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

services/usb-livesync-service-base.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class SyncBatch {
4343
}
4444

4545
public get syncPending() {
46-
return this.syncQueue.length > 0
46+
return this.syncQueue.length > 0;
4747
}
4848
}
4949

@@ -204,11 +204,11 @@ export class UsbLiveSyncServiceBase implements IUsbLiveSyncServiceBase {
204204
beforeLiveSyncAction
205205
).wait();
206206
}
207-
)
207+
);
208208
}
209209

210210
this.$dispatcher.dispatch( () => (() => {
211-
let fileToSync = beforeBatchLiveSyncAction ? beforeBatchLiveSyncAction(filePath).wait() : filePath
211+
let fileToSync = beforeBatchLiveSyncAction ? beforeBatchLiveSyncAction(filePath).wait() : filePath;
212212
this.batch.addFile(fileToSync);
213213
}).future<void>()());
214214
}
@@ -222,9 +222,9 @@ export class UsbLiveSyncServiceBase implements IUsbLiveSyncServiceBase {
222222
if (this.batch == null || !this.batch.syncPending) {
223223
this.batch = new SyncBatch(
224224
this.$logger, this.$dispatcher, (filesToSync) => {
225-
this.$iOSEmulatorServices.syncFiles(appIdentifier, projectFilesPath, filesToSync, notRunningiOSSimulatorAction, iOSSimulatorRelativeToProjectBasePathAction)
225+
this.$iOSEmulatorServices.syncFiles(appIdentifier, projectFilesPath, filesToSync, notRunningiOSSimulatorAction, iOSSimulatorRelativeToProjectBasePathAction);
226226
}
227-
)
227+
);
228228
}
229229

230230
this.batch.addFile(filePath);

0 commit comments

Comments
 (0)