Skip to content

Commit

Permalink
refactor: use default compare
Browse files Browse the repository at this point in the history
  • Loading branch information
siyul-park committed Nov 24, 2023
1 parent 66800a9 commit 99ef30e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/database/memdb/collection.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"sort"
"sync"

"github.com/emirpasic/gods/maps/treemap"
"github.com/pkg/errors"
"github.com/siyul-park/uniflow/internal/pool"
"github.com/siyul-park/uniflow/internal/util"
Expand All @@ -15,7 +16,7 @@ import (
type (
Collection struct {
name string
data *sync.Map
data maps.Map
indexView *IndexView
streams []*Stream
streamMatches []func(*primitive.Map) bool
Expand Down

0 comments on commit 99ef30e

Please sign in to comment.