Skip to content

Commit 6d50776

Browse files
committed
chore: rename
1 parent 930d4b9 commit 6d50776

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/file/file_manager_service.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ func (fms *FileManagerService) DetermineFileActions(currentFiles, modifiedFiles
485485
fileDiff := make(map[string]*mpi.File) // Files that have changed, key is file name
486486
fileContents := make(map[string][]byte) // contents of the file, key is file name
487487

488-
manifestFiles, manifestFileErr := fms.getManifestFile(currentFiles)
488+
manifestFiles, manifestFileErr := fms.manifestFile(currentFiles)
489489

490490
if manifestFileErr != nil && manifestFiles == nil {
491491
return nil, nil, manifestFileErr
@@ -578,7 +578,7 @@ func (fms *FileManagerService) UpdateManifestFile(currentFiles map[string]*mpi.F
578578
return nil
579579
}
580580

581-
func (fms *FileManagerService) getManifestFile(currentFiles map[string]*mpi.File) (map[string]*mpi.File, error) {
581+
func (fms *FileManagerService) manifestFile(currentFiles map[string]*mpi.File) (map[string]*mpi.File, error) {
582582
if _, err := os.Stat(manifestFilePath); err != nil {
583583
return currentFiles, err // Return current files if manifest directory still doesn't exist
584584
}

0 commit comments

Comments
 (0)