Skip to content

Commit b469331

Browse files
committed
fix
1 parent 8b4401a commit b469331

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/project/snapshotfs.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,16 +296,16 @@ func (fs *SourceFS) WalkDir(root string, walkFn vfs.WalkDirFunc) error {
296296
}
297297

298298
// WriteFile implements vfs.FS.
299-
func (fs *sourceFS) WriteFile(path string, data string, writeByteOrderMark bool) error {
299+
func (fs *SourceFS) WriteFile(path string, data string, writeByteOrderMark bool) error {
300300
panic("unimplemented")
301301
}
302302

303303
// Remove implements vfs.FS.
304-
func (fs *sourceFS) Remove(path string) error {
304+
func (fs *SourceFS) Remove(path string) error {
305305
panic("unimplemented")
306306
}
307307

308308
// Chtimes implements vfs.FS.
309-
func (fs *sourceFS) Chtimes(path string, atime time.Time, mtime time.Time) error {
309+
func (fs *SourceFS) Chtimes(path string, atime time.Time, mtime time.Time) error {
310310
panic("unimplemented")
311311
}

0 commit comments

Comments
 (0)