From 836176b98780aa411788b99f3d2cd16396ee9497 Mon Sep 17 00:00:00 2001 From: David Lynch Date: Fri, 3 May 2024 03:51:43 +0100 Subject: [PATCH] fixed breaking test from conflict resolution --- src/main.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index c803b87..3754d40 100644 --- a/src/main.rs +++ b/src/main.rs @@ -104,10 +104,6 @@ fn compile(data: String) -> Result { ), &_ => println!("{} not supported", tokens[0]), } - result.push_str(&data); - } - if !error.is_empty() { - return Err(error); } Ok(result) }