1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-20 19:57:45 +00:00

Remove leftover println

This commit is contained in:
Joshua Goins 2025-03-08 09:02:49 -05:00
parent 805a0a7d2c
commit c9018336c8
3 changed files with 0 additions and 6 deletions

View file

@ -178,8 +178,6 @@ impl IndexFile {
pub fn from_existing(path: &str) -> Option<Self> {
let mut index_file = std::fs::File::open(path).ok()?;
println!("Reading {}!", path);
Self::read(&mut index_file).ok()
}

View file

@ -90,8 +90,6 @@ impl StainingTemplate {
values.push(cursor.read_le::<T>().unwrap());
}
println!("{:#?}", cursor.position());
let eof_marker = cursor.read_le::<u8>().unwrap();
assert_eq!(eof_marker, 0xFF);

View file

@ -98,8 +98,6 @@ impl Texture {
let mut cursor = Cursor::new(buffer);
let header = TexHeader::read(&mut cursor).ok()?;
println!("{:#?}", header.attribute);
cursor
.seek(SeekFrom::Start(std::mem::size_of::<TexHeader>() as u64))
.ok()?;