Reorganize function parameters to not specify repeat types

This commit is contained in:
2024-05-29 13:23:08 -04:00
parent 53f88e8739
commit 971556aabc
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ func GetOldEntryData(targetLocation string, field int) []string {
}
// Rename renames oldLocation to newLocation
func Rename(oldLocation string, newLocation string) {
func Rename(oldLocation, newLocation string) {
// ensure newLocation does not exist
_, isAccessible := TargetIsFile(newLocation, false, 0)
if isAccessible {