Skip to content

Commit

Permalink
fix: removed unused const
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhargav Dodla committed Feb 15, 2025
1 parent 4139a7e commit f0ebb6b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions go/internal/feast/onlinestore/cassandraonlinestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ type CassandraOnlineStore struct {
// The version of the table name format
tableNameFormatVersion int

// Caches table names instead of generating the table name every time
tableNameCache sync.Map
}

Expand All @@ -62,8 +63,6 @@ const (
BASE62_CHAR_SET = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
)

const ()

// toBase62 converts a big integer to a base62 string.
func toBase62(num *big.Int) string {
if num.Sign() == 0 {
Expand Down

0 comments on commit f0ebb6b

Please sign in to comment.