diff options
author | Valery Piashchynski <[email protected]> | 2021-10-14 16:26:52 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-10-14 16:26:52 +0300 |
commit | 9de85482ce19c4e40b68d9e3f6458875856a071e (patch) | |
tree | fcf3bc27c45ba13cffa09cecb101ad38ac4f967c /priority_queue/binary_heap_test.go | |
parent | 4d352766d1acda15e29616ef961cbf7e87f92dc8 (diff) |
- Remove Acknowledgement from the PQ interface
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'priority_queue/binary_heap_test.go')
-rw-r--r-- | priority_queue/binary_heap_test.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/priority_queue/binary_heap_test.go b/priority_queue/binary_heap_test.go index 2eed34e6..e29835c2 100644 --- a/priority_queue/binary_heap_test.go +++ b/priority_queue/binary_heap_test.go @@ -12,18 +12,6 @@ import ( type Test int -func (t Test) Ack() error { - return nil -} - -func (t Test) Nack() error { - return nil -} - -func (t Test) Requeue(_ map[string][]string, _ int64) error { - return nil -} - func (t Test) Body() []byte { return nil } |