remove the debug print that neither me nor filip noticed

This commit is contained in:
Micah 2025-04-03 11:56:20 -07:00
parent 7a35ce40b4
commit 2f5af0ef4c
No known key found for this signature in database

View file

@ -111,7 +111,6 @@ impl From<EnumItem> for DomEnumItem {
impl From<DomEnumItem> for EnumItem {
fn from(value: DomEnumItem) -> Self {
println!("dom enum item: {value:?}");
EnumItem::from_enum_name_and_value(value.ty, value.value)
.expect("cannot convert rbx_type::EnumItem with unknown type into EnumItem")
}