Remove unnecessary prefix

This commit is contained in:
Truman Kilen 2023-02-10 17:12:31 -06:00
parent 847f2d7aa8
commit 8564cf6268

View file

@ -104,7 +104,7 @@ impl PakReader {
Ok(data) Ok(data)
} }
pub fn read_file<R: Read + Seek, W: io::Write>( pub fn read_file<R: Read + Seek, W: Write>(
&self, &self,
path: &str, path: &str,
reader: &mut R, reader: &mut R,
@ -121,7 +121,7 @@ impl PakReader {
} }
} }
impl<W: Write + io::Seek> PakWriter<W> { impl<W: Write + Seek> PakWriter<W> {
pub fn new( pub fn new(
writer: W, writer: W,
key: Option<aes::Aes256>, key: Option<aes::Aes256>,