We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0036315 commit b36ca5aCopy full SHA for b36ca5a
src/fastq.rs
@@ -852,7 +852,6 @@ impl<'a> RefRecord<'a> {
852
/// by just writing the unmodified input, which is faster than `RefRecord::write`
853
#[inline]
854
pub fn write_unchanged<W: io::Write>(&self, writer: &mut W) -> io::Result<()> {
855
- #[inline]
856
let data = &self.buffer[self.buf_pos.pos.0 .. self.buf_pos.pos.1];
857
writer.write_all(data)?;
858
writer.write_all(b"\n")
0 commit comments