summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRory Dudley2024-05-04 16:38:17 -0600
committerRory Dudley2024-05-04 16:38:17 -0600
commit9b4785ce4f89ea50c00459f260f4a00050a6a48a (patch)
treeaeb42da789672ea112625b4f46e837dd5c29f2ab
parent87e4a3da43e7d203d3405f977ce8e93298dd55c3 (diff)
downloaddwarvish-9b4785ce4f89ea50c00459f260f4a00050a6a48a.tar.gz
Remove some defunct code
Remove some defunct code that was previously used to check for special runes.
-rw-r--r--src/poem/elements/rune.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/poem/elements/rune.rs b/src/poem/elements/rune.rs
index 6db69c9..2307519 100644
--- a/src/poem/elements/rune.rs
+++ b/src/poem/elements/rune.rs
@@ -85,14 +85,6 @@ impl fmt::Display for Rune {
}
impl Rune {
- // /// Check if a character is a special [Rune]
- // pub fn special(rune: char) -> bool {
- // match rune {
- // ' ' | '/' | '$' | '\'' | '"' | '`' | '<' | '>' | '|' | '&' | ';' | '~' => true,
- // _ => false,
- // }
- // }
-
/// Recite a verse with [Rune::None]
///
/// Call this function on a [Verse] with a meter of type [Rune::None].