diff --git a/src/fastq.rs b/src/fastq.rs index b945e4a..b17719a 100644 --- a/src/fastq.rs +++ b/src/fastq.rs @@ -852,7 +852,6 @@ impl<'a> RefRecord<'a> { /// by just writing the unmodified input, which is faster than `RefRecord::write` #[inline] pub fn write_unchanged(&self, writer: &mut W) -> io::Result<()> { - #[inline] let data = &self.buffer[self.buf_pos.pos.0 .. self.buf_pos.pos.1]; writer.write_all(data)?; writer.write_all(b"\n")