File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
turbopack/crates/turbo-tasks-fs/src Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -721,7 +721,6 @@ impl FileSystem for DiskFileSystem {
721
721
722
722
#[ turbo_tasks:: function( fs) ]
723
723
async fn write ( & self , fs_path : Vc < FileSystemPath > , content : Vc < FileContent > ) -> Result < ( ) > {
724
- mark_session_dependent ( ) ;
725
724
let full_path = self . to_sys_path ( fs_path) . await ?;
726
725
let content = content. await ?;
727
726
let inner = self . inner . clone ( ) ;
@@ -844,7 +843,6 @@ impl FileSystem for DiskFileSystem {
844
843
845
844
#[ turbo_tasks:: function( fs) ]
846
845
async fn write_link ( & self , fs_path : Vc < FileSystemPath > , target : Vc < LinkContent > ) -> Result < ( ) > {
847
- mark_session_dependent ( ) ;
848
846
let full_path = self . to_sys_path ( fs_path) . await ?;
849
847
let content = target. await ?;
850
848
let inner = self . inner . clone ( ) ;
You can’t perform that action at this time.
0 commit comments