Skip to content

Commit

Permalink
Remove accidentally included print
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethloeffler committed Oct 17, 2024
1 parent 415ba1b commit b8fe2a3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion rbx_reflection_database/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ mod test {

let mut current_class_descriptor = part_class_descriptor.unwrap();
while let Some(superclass) = current_class_descriptor.superclass.as_ref() {
println!("{}", superclass);
let superclass_descriptor = database.classes.get(superclass.as_ref());
class_descriptor_eq(iter.next(), superclass_descriptor);
current_class_descriptor = superclass_descriptor.unwrap();
Expand Down

0 comments on commit b8fe2a3

Please sign in to comment.