From b6eaff65ca8985ad0c195c0e5e9278a97d1ae655 Mon Sep 17 00:00:00 2001 From: TopchetoEU <36534413+TopchetoEU@users.noreply.github.com> Date: Sat, 25 Nov 2023 18:48:46 +0200 Subject: [PATCH] style: remove unnececeary import --- src/me/topchetoeu/jscript/parsing/Parsing.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/me/topchetoeu/jscript/parsing/Parsing.java b/src/me/topchetoeu/jscript/parsing/Parsing.java index fd598c8..f57ab7e 100644 --- a/src/me/topchetoeu/jscript/parsing/Parsing.java +++ b/src/me/topchetoeu/jscript/parsing/Parsing.java @@ -11,7 +11,6 @@ import java.util.TreeSet; import me.topchetoeu.jscript.Filename; import me.topchetoeu.jscript.Location; import me.topchetoeu.jscript.compilation.*; -import me.topchetoeu.jscript.compilation.Instruction.Type; import me.topchetoeu.jscript.compilation.VariableDeclareStatement.Pair; import me.topchetoeu.jscript.compilation.control.*; import me.topchetoeu.jscript.compilation.control.SwitchStatement.SwitchCase;