Skip to content

Commit

Permalink
refactor: remove unneeded variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebell committed Oct 9, 2024
1 parent 588e830 commit c918706
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cmd/mean-time-to-repair/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ func convertToRaw(data string) int {
}

func convertHoursToMinutes(i int) int {
i = i * 60
return i
return i * 60
}

func main() {
Expand Down

0 comments on commit c918706

Please sign in to comment.