mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
Just return path
This commit is contained in:
parent
397f023a5e
commit
b74aef2725
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ impl FileSystem for InMemoryFs {
|
|||
}
|
||||
|
||||
fn realpath_sync(&self, path: &Path) -> FsResult<PathBuf> {
|
||||
RealFs.realpath_sync(path)
|
||||
Ok(path.to_path_buf())
|
||||
}
|
||||
async fn realpath_async(&self, path: PathBuf) -> FsResult<PathBuf> {
|
||||
self.realpath_sync(&path)
|
||||
|
|
Loading…
Reference in a new issue