Skip to content

Commit 1ff8b6c

Browse files
committed
refactor: remove string overloads
1 parent b1c446b commit 1ff8b6c

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/Atypical.VirtualFileSystem.Core/SystemOperations/Commands/VFS.CreateDirectory.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,4 @@ public IVirtualFileSystem CreateDirectory(VFSDirectoryPath directoryPath)
1919

2020
return this;
2121
}
22-
23-
/// <inheritdoc cref="IVirtualFileSystem.CreateDirectory(string)" />
24-
public IVirtualFileSystem CreateDirectory(string directoryPath)
25-
=> CreateDirectory(new VFSDirectoryPath(directoryPath));
2622
}

src/Atypical.VirtualFileSystem.Core/SystemOperations/Commands/VFS.DeleteDirectory.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,4 @@ public IVirtualFileSystem DeleteDirectory(VFSDirectoryPath directoryPath)
2323

2424
return this;
2525
}
26-
27-
/// <inheritdoc cref="IVirtualFileSystem.DeleteDirectory(string)" />
28-
public IVirtualFileSystem DeleteDirectory(string directoryPath)
29-
=> DeleteDirectory(new VFSDirectoryPath(directoryPath));
3026
}

0 commit comments

Comments
 (0)