File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
standalone-packages/codesandbox-browserfs/src/backend Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -285,11 +285,11 @@ export default class CodeSandboxEditorFS extends SynchronousFileSystem
285285 }
286286
287287 public rmdirSync ( p : string ) {
288- warn ( 'rmDirSync not supported' ) ;
288+ // Stubbed
289289 }
290290
291291 public mkdirSync ( p : string ) {
292- warn ( 'rmDirSync not supported' ) ;
292+ // Stubbed
293293 }
294294
295295 public readdirSync ( path : string ) : string [ ] {
@@ -321,12 +321,12 @@ export default class CodeSandboxEditorFS extends SynchronousFileSystem
321321 }
322322
323323 public _sync ( p : string , data : Buffer , cb : BFSCallback < Stats > ) : void {
324- warn ( 'Sync not supported' ) ;
324+ // Stubbed
325325
326326 cb ( null , undefined ) ;
327327 }
328328
329329 public _syncSync ( p : string , data : Buffer ) : void {
330- warn ( 'Sync not supported' ) ;
330+ // Stubbed
331331 }
332332}
You can’t perform that action at this time.
0 commit comments