Skip to content

Commit 4aa91fe

Browse files
committed
removed unnecessary function
1 parent d0006e8 commit 4aa91fe

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tmc-langs-framework/src/plugin.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -495,14 +495,6 @@ pub trait LanguagePlugin {
495495
fn points_parser<'a>(i: &'a str) -> IResult<&'a str, &'a str>;
496496
}
497497

498-
pub fn simple_delimited<'a>(limiter: char) -> impl Fn(&'a str) -> IResult<&'a str, &'a str> {
499-
sequence::delimited(
500-
character::complete::char(limiter),
501-
bytes::complete::take_till(move |c| c == limiter),
502-
character::complete::char(limiter),
503-
)
504-
}
505-
506498
#[derive(Debug, Clone)]
507499
enum Parse {
508500
LineComment,

0 commit comments

Comments
 (0)