From 6dfa5b35bd3d67d155e876c950a25b0e5f9625d8 Mon Sep 17 00:00:00 2001 From: Andrew Duffy Date: Tue, 1 Oct 2024 15:50:55 -0400 Subject: [PATCH] remove unused --- encodings/alp/src/alp_rd/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/encodings/alp/src/alp_rd/mod.rs b/encodings/alp/src/alp_rd/mod.rs index 5f0e7a8263..821e6ac2ee 100644 --- a/encodings/alp/src/alp_rd/mod.rs +++ b/encodings/alp/src/alp_rd/mod.rs @@ -246,12 +246,8 @@ pub fn alp_rd_decode( "alp_rd_decode: exc_pos.len != exceptions.len" ); - // Prepare the dictionary for decoding by adding the extra value for lookups to match. let mut dict = Vec::with_capacity(left_parts_dict.len()); dict.extend_from_slice(left_parts_dict); - // // Add an extra code for out-of-dict values. These will be overwritten with exceptions later. - // const EXCEPTION_SENTINEL: u16 = 0xDEAD; - // dict.push(EXCEPTION_SENTINEL); let mut left_parts_decoded: Vec = Vec::with_capacity(left_parts.len());