From c6d6ddf1c2d94324a56f752c96574ee1f6663d6b Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sat, 12 Apr 2025 09:05:34 -0700 Subject: [PATCH] remove classes --- rust/pspp/src/output/pivot/mod.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/rust/pspp/src/output/pivot/mod.rs b/rust/pspp/src/output/pivot/mod.rs index db15eda5ca..1d649d113e 100644 --- a/rust/pspp/src/output/pivot/mod.rs +++ b/rust/pspp/src/output/pivot/mod.rs @@ -477,22 +477,12 @@ impl Footnotes { #[derive(Clone, Debug)] pub struct Leaf { name: Box, - - /// Default format for values in this category. - class: Option, } impl Leaf { pub fn new(name: Value) -> Self { Self { name: Box::new(name), - class: None, - } - } - pub fn with_class(self, class: Class) -> Self { - Self { - class: Some(class), - ..self } } } -- 2.30.2