summaryrefslogtreecommitdiffstats
path: root/src/options/option_value.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/option_value.rs')
-rw-r--r--src/options/option_value.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/options/option_value.rs b/src/options/option_value.rs
index d569f676..cbe5b383 100644
--- a/src/options/option_value.rs
+++ b/src/options/option_value.rs
@@ -55,13 +55,6 @@ impl From<OptionValue> for Option<String> {
fn from(value: OptionValue) -> Self {
match value {
OptionValue::OptionString(value) => value,
- // HACK: See the comment in options::set::compute_line_numbers_mode(). That function
- // deliberately reads what is normally a boolean value ('line-numbers') as a string.
- // However options::get::get_option_value() can fall through to obtaining the value
- // from builtin_features, in which case an OptionValue::Boolean will be encountered.
- // See the comment in options::set::compute_line_numbers_mode() and docstring of
- // options::get::get_option_value().
- OptionValue::Boolean(_) => None,
_ => delta_unreachable("Error converting OptionValue to Option<String>."),
}
}