Skip to content

Commit

Permalink
remove unused func
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall committed Dec 4, 2024
1 parent 7857c49 commit 88c3ca6
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions internal/handlers/transform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,3 @@ func equalStringSlices(a, b []string) bool {
}
return true
}

func equalLinkedAgents(a, b [][]string) bool {
if len(a) != len(b) {
return false
}
for i := range a {
if !equalStringSlices(a[i], b[i]) {
return false
}
}
return true
}

0 comments on commit 88c3ca6

Please sign in to comment.