Skip to content

Commit

Permalink
Use IO to be consistent
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew W. Harn <[email protected]>
  • Loading branch information
awharn committed Nov 5, 2024
1 parent 9f8124c commit 9b20a2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/imperative/src/io/src/IO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class IO {
* @deprecated Please use IO.createDirSync
*/
public static createDirsSync(dir: string) {
this.createDirSync(dir);
IO.createDirSync(dir);
}

/**
Expand Down Expand Up @@ -194,7 +194,7 @@ export class IO {
*/
public static mkdirp(dir: string) {
ImperativeExpect.toBeDefinedAndNonBlank(dir, "dir");
this.createDirSync(dir);
IO.createDirSync(dir);
}

/**
Expand Down

0 comments on commit 9b20a2b

Please sign in to comment.