From 4e44c6cb2d6fb5041e286807ae8618323a64b2a7 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 25 Apr 2023 12:50:01 -0600 Subject: [PATCH] undo mistake --- src/kiss/CompilerTools.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kiss/CompilerTools.hx b/src/kiss/CompilerTools.hx index 2100a01..7942063 100644 --- a/src/kiss/CompilerTools.hx +++ b/src/kiss/CompilerTools.hx @@ -124,7 +124,7 @@ class CompilerTools { // make the kiss file just the given expressions dumped into a file, // with a corresponding name to the mainClassName - var kissFileContent = '(addMetadata #"@:expose("Fuck")"#)\n'; + var kissFileContent = ""; for (exp in exps) { kissFileContent += Reader.toString(exp.def) + "\n"; }