( lockId: string )
| 82 | } |
| 83 | |
| 84 | public enableReadOnlyMode( lockId: string ): void { |
| 85 | this._readOnlyLocks.add( lockId ); |
| 86 | } |
| 87 | |
| 88 | public disableReadOnlyMode( lockId: string ): void { |
| 89 | this._readOnlyLocks.delete( lockId ); |
no outgoing calls
no test coverage detected