diff --git a/src/index.rs b/src/index.rs index 3d76b3f..8be3015 100755 --- a/src/index.rs +++ b/src/index.rs @@ -178,8 +178,6 @@ impl IndexFile { pub fn from_existing(path: &str) -> Option { let mut index_file = std::fs::File::open(path).ok()?; - println!("Reading {}!", path); - Self::read(&mut index_file).ok() } diff --git a/src/stm.rs b/src/stm.rs index a1ca688..887bb72 100644 --- a/src/stm.rs +++ b/src/stm.rs @@ -90,8 +90,6 @@ impl StainingTemplate { values.push(cursor.read_le::().unwrap()); } - println!("{:#?}", cursor.position()); - let eof_marker = cursor.read_le::().unwrap(); assert_eq!(eof_marker, 0xFF); diff --git a/src/tex.rs b/src/tex.rs index 0f0762a..132281f 100644 --- a/src/tex.rs +++ b/src/tex.rs @@ -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::() as u64)) .ok()?;