diff options
author | Nathan Vegdahl | 2021-07-02 02:40:37 +0000 |
---|---|---|
committer | Nathan Vegdahl | 2021-07-02 02:40:37 +0000 |
commit | 230248bbc3e453bab339cb865990c3fa2f518311 (patch) | |
tree | a9bad119de2abe12a65f5530fd421ac0c308655f /helix-core/src | |
parent | 2224a1527ec9592f16131b0aa3923fc3d37592e7 (diff) |
Fix a couple additional `unused` warnings after merge.
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/selection.rs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/helix-core/src/selection.rs b/helix-core/src/selection.rs index 5f77d7ad..6ca798a6 100644 --- a/helix-core/src/selection.rs +++ b/helix-core/src/selection.rs @@ -11,15 +11,6 @@ use crate::{ use smallvec::{smallvec, SmallVec}; use std::borrow::Cow; -#[inline] -fn abs_difference(x: usize, y: usize) -> usize { - if x < y { - y - x - } else { - x - y - } -} - /// A single selection range. /// /// The range consists of an "anchor" and "head" position in @@ -367,7 +358,7 @@ impl Selection { } /// A convenience short-cut for `transform(|r| r.min_width_1(text))`. - pub fn min_width_1(mut self, text: RopeSlice) -> Self { + pub fn min_width_1(self, text: RopeSlice) -> Self { self.transform(|r| r.min_width_1(text)) } |