瀏覽代碼

Listened to compiler

AvariceLHubris 1 年之前
父節點
當前提交
154dd832a3
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      src/hufftree/canonical.rs

+ 0 - 2
src/hufftree/canonical.rs

@@ -4,7 +4,6 @@ use bit_vec::BitVec;
 
 #[derive(Debug)]
 pub struct CanonicalHufftree {
-    base_tree: Hufftree,
     characters_and_codes: BiMap<char, BitVec>,
 }
 
@@ -76,7 +75,6 @@ impl CanonicalHufftree {
         }
 
         CanonicalHufftree {
-            base_tree,
             characters_and_codes: output_characters_and_codes,
         }
     }