diff options
| author | 2026-01-25 16:34:29 +0100 | |
|---|---|---|
| committer | 2026-01-25 16:34:29 +0100 | |
| commit | 0bce99dae6574e59eacca8004cfeb9a76e294b77 (patch) | |
| tree | b2f8f6db52575f944f9d8a9e21bc7d958a89bf56 /src/xcursor.rs | |
| parent | 6ae2681aa1abc1fa447d64d2a269878e29b1d904 (diff) | |
| download | bibata-cursor-cli-test-parallelism.tar.gz bibata-cursor-cli-test-parallelism.tar.bz2 bibata-cursor-cli-test-parallelism.tar.lz bibata-cursor-cli-test-parallelism.zip | |
chore: remove dead code
Diffstat (limited to 'src/xcursor.rs')
| -rw-r--r-- | src/xcursor.rs | 5 |
1 files changed, 0 insertions, 5 deletions
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<u8>, new_data: &[u8]) { data.extend_from_slice(new_data); } - // fn insert_iterated(data: &mut Vec<u8>, new_data: impl IntoIterator<Item = u8>) { - // for int in new_data { - // data.push(int); - // } - // } fn insert_int(data: &mut Vec<u8>, int: u32) { data.push((int & 0xff) as u8); data.push(((int >> 8) & 0xff) as u8); |