From 30dccab8678bd134e084afdafbf3e14d047f0965 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 15 Aug 2022 10:38:24 +0200 Subject: Refactor to solve some clippy issues --- src/compiler.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/compiler.rs') diff --git a/src/compiler.rs b/src/compiler.rs index a935367..f2af8f1 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -168,7 +168,6 @@ impl<'a> CompileContext<'a> { } /// Turn events and codes into a string of HTML. -#[allow(clippy::too_many_lines)] pub fn compile(events: &[Event], bytes: &[u8], options: &Options) -> String { let mut index = 0; let mut line_ending_inferred = None; -- cgit