Skip to content

Commit

Permalink
remove left over
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-marechal committed Mar 8, 2023
1 parent 23bb8df commit 8b2eb37
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions packages/core/src/node/filesystem-locking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@ export class FileSystemLockingImpl implements FileSystemLocking {
return path.resolve(lockPath);
}

protected async touchFile(filePath: string): Promise<void> {
const file = await fs.promises.open(filePath, fs.constants.O_CREAT);
await file.close();
}

protected getLocks(): Map<string, Mutex> {
const kLocks = Symbol.for('FileSystemLockingImpl.Locks');
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand Down

0 comments on commit 8b2eb37

Please sign in to comment.