diff options
author | Valery Piashchynski <[email protected]> | 2021-06-30 11:09:45 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-30 11:09:45 +0300 |
commit | a233ef3208346be55539ad7e99d79a1498ddbcf8 (patch) | |
tree | 3d65326f47797547d8182b5701100b168439cd3b /pkg | |
parent | 2ac3b240b118961c1a30cc18dd22d08b7fac6516 (diff) |
- Remove unused methods from the QueueImpl
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/priority_queue/queue.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/priority_queue/queue.go b/pkg/priority_queue/queue.go index c12acbf6..c5a8a1f6 100644 --- a/pkg/priority_queue/queue.go +++ b/pkg/priority_queue/queue.go @@ -17,7 +17,3 @@ func (q *QueueImpl) Push(item interface{}) { func (q *QueueImpl) Pop() interface{} { return nil } - -func (q *QueueImpl) BLPop() { - -} |