Skip to content

Commit

Permalink
some bugs are fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeAbounds committed Apr 23, 2022
1 parent dec5791 commit 84ed4de
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/hopeAbounds/toolkit
module github.com/Choubeihai/toolkit

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion listbuffer/listbuffer.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package listbuffer

import "github.com/hopeAbounds/toolkit/pool/bytebuffer"
import "github.com/Choubeihai/toolkit/pool/bytebuffer"

type ByteBuffer struct {
Buf *bytebuffer.ByteBuffer
Expand Down
2 changes: 1 addition & 1 deletion pool/ringbuffer/ringbuffer.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ringbuffer

import (
"github.com/hopeAbounds/toolkit/ringbuffer"
"github.com/Choubeihai/toolkit/ringbuffer"
"sort"
"sync"
"sync/atomic"
Expand Down
8 changes: 4 additions & 4 deletions ringbuffer/ringbuffer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package ringbuffer

import (
"errors"
"github.com/hopeAbounds/toolkit/byteconv"
"github.com/hopeAbounds/toolkit/math"
"github.com/hopeAbounds/toolkit/pool/bytebuffer"
"github.com/hopeAbounds/toolkit/pool/byteslice"
"github.com/Choubeihai/toolkit/byteconv"
"github.com/Choubeihai/toolkit/math"
"github.com/Choubeihai/toolkit/pool/bytebuffer"
"github.com/Choubeihai/toolkit/pool/byteslice"
)

const (
Expand Down

0 comments on commit 84ed4de

Please sign in to comment.