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 @@ -696,7 +696,6 @@ impl FileSystem for DiskFileSystem {
696
696
697
697
#[ turbo_tasks:: function( fs) ]
698
698
async fn write ( & self , fs_path : Vc < FileSystemPath > , content : Vc < FileContent > ) -> Result < ( ) > {
699
- mark_session_dependent ( ) ;
700
699
let full_path = self . to_sys_path ( fs_path) . await ?;
701
700
let content = content. await ?;
702
701
let inner = self . inner . clone ( ) ;
@@ -826,7 +825,6 @@ impl FileSystem for DiskFileSystem {
826
825
827
826
#[ turbo_tasks:: function( fs) ]
828
827
async fn write_link ( & self , fs_path : Vc < FileSystemPath > , target : Vc < LinkContent > ) -> Result < ( ) > {
829
- mark_session_dependent ( ) ;
830
828
let full_path = self . to_sys_path ( fs_path) . await ?;
831
829
let content = target. await ?;
832
830
let inner = self . inner . clone ( ) ;
You can’t perform that action at this time.
0 commit comments