Skip to content

Commit

Permalink
remove stray dbgs
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshuawuyts committed Mar 19, 2024
1 parent c14400c commit 7b5d8cc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/stream/stream_group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,8 @@ impl<S: Stream> StreamGroup<S> {
where
S: Stream,
{
dbg!();
let index = self.streams.insert(stream);
self.keys.insert(dbg!(index));
self.keys.insert(index);
let key = Key(index);

// If our slab allocated more space we need to
Expand Down

0 comments on commit 7b5d8cc

Please sign in to comment.