Skip to content

Commit

Permalink
Null lock() method in Abstract class to complete API
Browse files Browse the repository at this point in the history
  • Loading branch information
piranna committed Nov 19, 2023
1 parent 8992c26 commit 1b762c6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions abstract.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ export default class FsSetAbstract
this._fd = -1
}

// eslint-disable-next-line class-methods-use-this
lock()
{
throw new Error('Not implemented')
}


//
// Protected API
Expand Down

0 comments on commit 1b762c6

Please sign in to comment.