Remove dbg!
This commit is contained in:
parent
51d1a0b0c7
commit
feae1789a9
1 changed files with 3 additions and 4 deletions
|
|
@ -339,14 +339,13 @@ impl ChunkTracker {
|
|||
match (current_piece_selected, current_piece_have) {
|
||||
(true, true) => {}
|
||||
(true, false) => {
|
||||
dbg!(self.mark_piece_broken_if_not_have(current_piece.piece_index))
|
||||
self.mark_piece_broken_if_not_have(current_piece.piece_index)
|
||||
}
|
||||
(false, true) => {}
|
||||
(false, false) => {
|
||||
// don't need the piece, and don't have it - cancel downloading it
|
||||
dbg!(self
|
||||
.queue_pieces
|
||||
.set(current_piece.piece_index.get() as usize, false));
|
||||
self.queue_pieces
|
||||
.set(current_piece.piece_index.get() as usize, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue