Skip to content

Commit

Permalink
refactor: remove ineffective assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
furtidev committed Apr 7, 2024
1 parent 165eebf commit bfc6e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ var alreadyVisitedIds []string

// stolen from: https://stackoverflow.com/a/75049947
func getAbs(path string, locationPath string) string {
var new_abs_path string
new_file_path := path
new_abs_path := path
if filepath.IsAbs(new_file_path) {
new_abs_path = new_file_path
} else {
Expand Down

0 comments on commit bfc6e29

Please # to comment.