javascript lint fix

This commit is contained in:
Scott Lamb 2020-03-14 15:13:11 -07:00
parent 3968bfe912
commit 038aebe0fd

View File

@ -53,8 +53,8 @@ export default class Recording {
this.openId = recordingJson.openId; this.openId = recordingJson.openId;
/** @const {?number} */ /** @const {?number} */
this.firstUncommitted = recordingJson.firstUncommitted !== undefined this.firstUncommitted = recordingJson.firstUncommitted !== undefined ?
? recordingJson.firstUncommitted : null; recordingJson.firstUncommitted : null;
/** @const {!boolean} */ /** @const {!boolean} */
this.growing = recordingJson.growing || false; this.growing = recordingJson.growing || false;