Skip to content

Commit

Permalink
Remove printing
Browse files Browse the repository at this point in the history
  • Loading branch information
jtomasevic committed Jul 24, 2022
1 parent 52c3b3f commit e3d81ba
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions collections/sorted_struct_list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package collections

import "fmt"

// IsLower returns true if left parameter is lower than right parameter
type IsLower[T comparable] func(left T, right T) bool

Expand Down Expand Up @@ -68,7 +66,6 @@ func (list *sortedStructList[T]) RemoveAt(position int) bool {
}
newList := list.elements
newList = append(newList[:position], newList[position+1:]...)
fmt.Printf("*** new list %v", newList)
(*list).elements = newList
return true
}
Expand Down

0 comments on commit e3d81ba

Please sign in to comment.