From 69d9b8511b5f9698be6130885b53bb3042762cf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20M=C3=A4nnchen?= Date: Thu, 4 Apr 2024 06:46:23 +0200 Subject: [PATCH] Remove unused function (#445) --- lib/zig/compiler.ex | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/zig/compiler.ex b/lib/zig/compiler.ex index 1ee7344d..5b917a0a 100644 --- a/lib/zig/compiler.ex +++ b/lib/zig/compiler.ex @@ -139,14 +139,6 @@ defmodule Zig.Compiler do zig_alias_template = Path.join(__DIR__, "templates/alias.zig.eex") EEx.function_from_file(:defp, :create_aliases, zig_alias_template, [:assigns]) - defp dependencies_for(assemblies) do - Enum.map(assemblies, fn assembly -> - quote do - @external_resource unquote(assembly.source) - end - end) - end - ############################################################################# ## STEPS