File tree 1 file changed +3
-4
lines changed 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ mod rustyline_readline {
125
125
126
126
#[ cfg( test) ]
127
127
mod test_rusty_readline {
128
- use super :: * ;
128
+ use super :: { Readline } ;
129
129
use rustyline:: { completion:: Completer , highlight:: Highlighter ,
130
130
validate:: Validator , Context , hint:: Hinter } ;
131
131
use rustyline:: error:: ReadlineError ;
@@ -142,8 +142,8 @@ mod rustyline_readline {
142
142
143
143
fn complete (
144
144
& self ,
145
- line : & str ,
146
- pos : usize ,
145
+ _line : & str ,
146
+ _pos : usize ,
147
147
_ctx : & Context ,
148
148
) -> rustyline:: Result < ( usize , Vec < String > ) > {
149
149
Err ( ReadlineError :: Interrupted )
@@ -152,7 +152,6 @@ mod rustyline_readline {
152
152
impl Hinter for HelperShim {
153
153
type Hint = String ;
154
154
}
155
- // impl Helper for ShellHelper<'_> {}
156
155
#[ test]
157
156
fn test_multi_read_line ( ) {
158
157
You can’t perform that action at this time.
0 commit comments