From 0bce99dae6574e59eacca8004cfeb9a76e294b77 Mon Sep 17 00:00:00 2001 From: memdmp Date: Sun, 25 Jan 2026 16:34:29 +0100 Subject: chore: remove dead code --- src/xcursor.rs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src') diff --git a/src/xcursor.rs b/src/xcursor.rs index 8d329bf..7e365e4 100644 --- a/src/xcursor.rs +++ b/src/xcursor.rs @@ -34,11 +34,6 @@ impl XCursorEncoder { fn insert_bytes(data: &mut Vec, new_data: &[u8]) { data.extend_from_slice(new_data); } - // fn insert_iterated(data: &mut Vec, new_data: impl IntoIterator) { - // for int in new_data { - // data.push(int); - // } - // } fn insert_int(data: &mut Vec, int: u32) { data.push((int & 0xff) as u8); data.push(((int >> 8) & 0xff) as u8); -- cgit v1.2.3