mirror of
https://github.com/xavo95/repak.git
synced 2025-01-18 19:04:07 +00:00
Remove unnecessary prefix
This commit is contained in:
parent
847f2d7aa8
commit
8564cf6268
1 changed files with 2 additions and 2 deletions
|
@ -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>,
|
||||||
|
|
Loading…
Reference in a new issue