Remove "Considering..." line

This commit is contained in:
Felipe Sere
2016-04-25 22:42:58 +01:00
parent 1357235f8a
commit 135fc055ca
2 changed files with 0 additions and 6 deletions

View File

@@ -53,11 +53,6 @@ defmodule Display do
format_error(error) |> IO.puts
end
def considering(module) do
IO.puts("Considering #{format_module(module)}...")
module
end
def clear_screen do
if Options.clear_screen? do
IO.puts(ANSI.clear)

View File

@@ -29,7 +29,6 @@ defmodule Runner do
def run_module(module) do
module
|> Display.considering
|> Execute.run_module(&track/2)
|> display
end