From 3dffade25dcb05c04fc0d229e0781a040b3fc885 Mon Sep 17 00:00:00 2001 From: Rory Dudley Date: Sun, 24 Mar 2024 22:40:09 -0600 Subject: Remove defunct code from read() and recite() Remove some commented out code, that is no longer needed after the parser overhaul. --- src/poem/recite.rs | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/poem/recite.rs') diff --git a/src/poem/recite.rs b/src/poem/recite.rs index ba739c2..1d41c40 100644 --- a/src/poem/recite.rs +++ b/src/poem/recite.rs @@ -119,20 +119,6 @@ impl Reciteable for Poem { } j += 1; } - - // // Get indices of words in the verse that begin with a vertical tab - // let mut indicies = vec![]; - // for (i, word) in verse.stanza.iter().enumerate() { - // if word.starts_with("\x0b") { - // indicies.push(i); - // } - // } - - // // Try to recite the internal poem, and update the parent poem - // for (i, poem) in verse.poems.iter().enumerate() { - // let out = poem.recite(path, bins, Some(false))?; - // verse.stanza[indicies[i]] = out; - // } } match new_stanza { -- cgit v1.2.3