push
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled

This commit is contained in:
philipp 2024-02-17 18:04:51 +01:00
parent 4317f79d0c
commit cdcdef9721

View File

@ -63,10 +63,6 @@ impl Liste {
}
pub(crate) fn get_content(&self) -> Content {
if self.content.len() == 1 {
self.content[0].clone()
} else {
Content::List(self.content.clone())
}
Content::List(self.content.clone())
}
}