refactor: remove unnecessary debugging and lists

This commit is contained in:
Nova
2025-07-15 14:13:55 -07:00
parent 0b4c7edc92
commit a29a04d3f5
3 changed files with 1 additions and 35 deletions

View File

@@ -21,7 +21,7 @@ pub struct DmabufFeedback(pub Arc<Dmabuf>);
impl DmabufFeedback {
#[tracing::instrument("debug", skip_all)]
pub async fn send_params(&self, client: &mut Client, sender_id: ObjectId) -> Result<()> {
let num_formats = dbg!(self.0.formats.len());
let num_formats = self.0.formats.len();
// Send format table first
self.send_format_table(client, sender_id).await?;

View File

@@ -66,8 +66,6 @@ impl Dmabuf {
.flat_map(|(f, mods)| mods.into_iter().map(move |modifier| (f, modifier)))
.collect();
dbg!(&formats);
let dmabuf = Self {
active_params: Registry::new(),
version,