summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-09-27 18:57:47 +0300
committerLars Wirzenius <liw@sequoia-pgp.org>2021-09-30 08:31:12 +0300
commit28394a99d39d9c46a9cb6e746159b5ae56871737 (patch)
treeac488f2fcf31c7454fd93f65a82037b10b94eacb /ipc
parentd7cb7da07661ce42c36ba2dd4bc0edcad11a7e81 (diff)
Drop unnecessary to_string() methods
The methods were shadowing the implementation of the same function via the Display trait. One implementation is enough. Found by the clippy trait inherent_to_string_shadow_display: https://rust-lang.github.io/rust-clippy/master/index.html#inherent_to_string_shadow_display
Diffstat (limited to 'ipc')
-rw-r--r--ipc/src/sexp/parse/lexer.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/ipc/src/sexp/parse/lexer.rs b/ipc/src/sexp/parse/lexer.rs
index bd641fef..b4eae979 100644
--- a/ipc/src/sexp/parse/lexer.rs
+++ b/ipc/src/sexp/parse/lexer.rs
@@ -54,12 +54,6 @@ impl<'a> From<Token<'a>> for String {
}
}
-impl<'a> Token<'a> {
- pub fn to_string(self) -> String {
- self.into()
- }
-}
-
#[derive(Debug)]
pub(crate) struct Lexer<'input> {
offset: usize,