Skip to content

Commit

Permalink
bcf/record/samples/series: Remove stray dbgs
Browse files Browse the repository at this point in the history
  • Loading branch information
zaeleus committed May 1, 2024
1 parent b15e790 commit 9488891
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions noodles-bcf/src/record/samples/series.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ fn get_string_value(src: &[u8], len: usize, i: usize) -> Option<Option<Value<'_>
fn get_genotype_value(src: &[u8], len: usize, i: usize) -> Option<Option<Value<'_>>> {
use self::value::Genotype;

dbg!(src, i, len);
let src = src.get(dbg!(range::<i8>(i, len)))?;
let src = src.get(range::<i8>(i, len))?;
Some(Some(Value::Genotype(Box::new(Genotype::new(src)))))
}

0 comments on commit 9488891

Please sign in to comment.