diff options
author | Michael Foiani <sotech117@michaels-mbp-3.devices.brown.edu> | 2022-04-28 17:21:30 -0400 |
---|---|---|
committer | Michael Foiani <sotech117@michaels-mbp-3.devices.brown.edu> | 2022-04-28 17:21:30 -0400 |
commit | f8503355ff82930e640369637c33d989fd7eaff3 (patch) | |
tree | 665cf9a07831c436ec0ee1f014c48f82feb5cb6a /src | |
parent | 40d4e33ce9db1cc3474746274bebdbb2cc3eea8d (diff) |
Remove unused param
Diffstat (limited to 'src')
-rw-r--r-- | src/client/apis/recording/recordingApi.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/apis/recording/recordingApi.ts b/src/client/apis/recording/recordingApi.ts index 3e9f030ab..cce19deec 100644 --- a/src/client/apis/recording/recordingApi.ts +++ b/src/client/apis/recording/recordingApi.ts @@ -173,7 +173,7 @@ export class RecordingApi { // TODO: extract this into different class with pause and resume recording private playFFView: CollectionFreeFormView | null; - public followMovements = (presentation: Presentation, docView: CollectionFreeFormView): undefined | Error => { + public followMovements = (presentation: Presentation): undefined | Error => { if (presentation.startDate === null || this.playFFView === null) { return new Error('[recordingApi.ts] followMovements() failed: no presentation data or no view') } |